summaryrefslogtreecommitdiffstats
path: root/bootstrap-prepare.sh
diff options
context:
space:
mode:
authorP. 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)
commit3817b339d9dbb18aca21f7e21737b9052ba09faa (patch)
treedefa914d7445413d7761c63d9e1d2d1b26e7bb5c /bootstrap-prepare.sh
parent986c1011168c754b701b2d5b1c85f104d9343f29 (diff)
bootstrap-prepare.sh: Skip packages with .changes.
Diffstat (limited to 'bootstrap-prepare.sh')
-rwxr-xr-xbootstrap-prepare.sh3
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 \