diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-02 02:16:41 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-02 02:16:41 +0100 |
commit | 55289a77bc8c9957c0d33c9a607103d8b31d1e59 (patch) | |
tree | f659fd4dfd9265ff8346c671631bd1c58b6baace | |
parent | a5f8656e034236ef6193845e8b3b3778f5845991 (diff) | |
download | jenkins.debian.net-55289a77bc8c9957c0d33c9a607103d8b31d1e59.tar.xz |
reproducible: create subdirs for suites
-rwxr-xr-x | bin/reproducible_common.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index d34f1d42..e9a5041a 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -53,6 +53,11 @@ ISSUES_PATH=/var/lib/jenkins/userContent/issues RB_PATH=/var/lib/jenkins/userContent/rb-pkg/ mkdir -p $NOTES_PATH $ISSUES_PATH $RB_PATH +# create subdirs for suites +for i in $SUITES ; do + mkdir -p /var/lib/jenkins/userContent/$i +done + # known package sets META_PKGSET[1]="essential" META_PKGSET[2]="required" |