diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-17 04:13:36 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-17 19:23:35 +0200 |
commit | 522f4a8f11d1797f9420a89efcf36a127ddafdbf (patch) | |
tree | 4618db9917a274966a1a325d4420a5da6c6b0d0b | |
parent | 41af19cf57b9ccabe94e35da1cc2e87fb070c6a7 (diff) | |
download | jenkins.debian.net-522f4a8f11d1797f9420a89efcf36a127ddafdbf.tar.xz |
reproducible/openwrt|lede: node_save_logs(): correct missing content path
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index e17698eb..f72be5be 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -87,7 +87,7 @@ node_save_logs() { # we create an empty tar.xz instead of failing touch "$tmpdir/build_logs.tar.xz" else - tar cJf "$tmpdir/build_logs.tar.xz" -C "$tmpdir/build/logs" + tar cJf "$tmpdir/build_logs.tar.xz" -C "$tmpdir/build/" ./logs fi } |