index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2017-10-18 13:29:43 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-10-18 13:29:43 +0200 |
commit | a24344e0a705369301942a9d9ac5d3c4a24a8326 (patch) | |
tree | fb362b252f89d2d7954b818782b2c7ab7d9755d6 /bin/return-assignment | |
parent | 43a932816ed014e193d91c04a6d355baa6deb41d (diff) |
-rwxr-xr-x | bin/return-assignment | 4 |
diff --git a/bin/return-assignment b/bin/return-assignment index e1aec3a..e6ca07d 100755 --- a/bin/return-assignment +++ b/bin/return-assignment @@ -48,7 +48,7 @@ if [ "$5" = 'ERROR' ]; then # save sent build logs tar -x \ - -C "${build_log_directory}" \ + -C "${build_log_directory}/error" \ --wildcards \ --no-wildcards-match-slash \ --transform="s|^|$1.$2.$3.$4.|" \ @@ -182,7 +182,7 @@ if [ -n "${package_errors}" ]; then fi # move build-logs -find . -maxdepth 1 -name '*.build-log.gz' -exec mv '{}' "${build_log_directory}/$1.$2.$3.$4.{}" \; +find . -maxdepth 1 -name '*.build-log.gz' -exec mv '{}' "${build_log_directory}/success/$1.$2.$3.$4.{}" \; # move packages destination=$(official_or_community "$1.$2.$3.$4" 'staging') |