From 3817b339d9dbb18aca21f7e21737b9052ba09faa Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 05 Dec 2013 23:02:11 -0500 Subject: bootstrap-prepare.sh: Skip packages with .changes. --- diff --git a/bootstrap-prepare.sh b/bootstrap-prepare.sh index 6158507..f4bbc43 100755 --- a/bootstrap-prepare.sh +++ b/bootstrap-prepare.sh @@ -62,6 +62,9 @@ prepare_packages_from_git() cd pkg for repo in $(cat "${SCRIPT_DIR}/bootstrap-pkgs-git.txt"); do + if [ -f "${repo##*/}_"*'_src_all.changes' ]; then + continue + fi log 'Preparing package %s...' "${repo##*/}" if [ ! -d "${repo##*/}" ]; then git clone --depth 1 \ -- cgit v0.9.1