diff options
author | P. J. McDermott <pjm@nac.net> | 2013-12-05 23:02:11 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-12-05 23:02:11 (EST) |
commit | 3817b339d9dbb18aca21f7e21737b9052ba09faa (patch) | |
tree | defa914d7445413d7761c63d9e1d2d1b26e7bb5c | |
parent | 986c1011168c754b701b2d5b1c85f104d9343f29 (diff) |
bootstrap-prepare.sh: Skip packages with .changes.
-rwxr-xr-x | bootstrap-prepare.sh | 3 |
1 files changed, 3 insertions, 0 deletions
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 \ |