summaryrefslogtreecommitdiff
path: root/MakeRelease.job
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-08-25 17:04:43 +0200
committerRyan Arnold <ryan.arnold@linaro.org>2016-08-30 17:52:34 +0000
commite80632e990eceb3cdd1e097653b79501470b98ae (patch)
treeac03a22fd8bd10782f2c62d82033b0628c6962e1 /MakeRelease.job
parentff4892d9ee1cf910604a797116e3f82a1bee5332 (diff)
scripts/MakeRelease.job: Fix copying of manifest.txt
When building a binary toolchain, the manifest is present under builds/${host}/${target} and under builds/destdir/${host}. No need to find both before copying (the 2nd one would silently overwrite the 1st one) Change-Id: I72df8e1a2d4fe6d650724b9d459a916cb1332d80
Diffstat (limited to 'MakeRelease.job')
-rwxr-xr-xMakeRelease.job2
1 files changed, 1 insertions, 1 deletions
diff --git a/MakeRelease.job b/MakeRelease.job
index f6aaefde..f293ebac 100755
--- a/MakeRelease.job
+++ b/MakeRelease.job
@@ -171,7 +171,7 @@ if test ${abe_ret} -ne 0; then
fi
# Copy the binary test results to the fileserver
-manifest="`find ${user_workspace} -name \*manifest.txt`"
+manifest="`find ${user_workspace}/_build/builds/destdir/ -name \*manifest.txt`"
ssh ${fileserver} "if test ! -d ${binaries}; then mkdir -p ${binaries}; fi"
scp ${manifest} ${fileserver}:${binaries}/
tarballs="`find ${user_snapshots} -name \*${release}\*.xz -o -name \*${release}\*.asc`"