diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-13 01:27:51 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-13 13:12:54 +0200 |
commit | ebb7e40a7b742f265e25e0bfcb591119440c7c30 (patch) | |
tree | 610e35e20c075575d7947f5bf9cdbddb4422170e /bin | |
parent | 69e3ee9590329e96f18b4a3cc71ea43134509372 (diff) | |
download | jenkins.debian.net-ebb7e40a7b742f265e25e0bfcb591119440c7c30.tar.xz |
reproducible_openwrt|lede: rename save_logs -> node_save_logs
In prepation to call it from outside
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index 1789ae71..23c26682 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -74,7 +74,7 @@ create_results_dirs() { mkdir -p $BASE/$project/dbd } -save_logs() { +node_save_logs() { local TYPE=$1 local RUN=$2 @@ -297,7 +297,7 @@ openwrt_build() { [ "$TYPE" = "openwrt" ] && save_openwrt_results $RUN # copy logs - save_logs $TYPE $RUN + node_save_logs $TMPDIR/build_logs.tar.xz $TMPBUILDDIR # clean up between builds openwrt_cleanup |