summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2020-07-10 12:10:41 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2020-07-10 12:10:41 +0000
commita4a126627ddd5ee3ead2bb9dec4867ca8ad04ad8 (patch)
treed4bf0aae3ad6f14618db5fbe1ac5fe62504888de
parent1eb4c2d8a2fcaf06bda74f8a8e54e3cbad539918 (diff)
MakeRelease.job: Use port 22 to upload binary tarballs
Our default ssh config points to the host container where the directory containing the binary tarballs is not mapped. Use port 22 to upload them to the right location. Change-Id: I5f18365f9d36541e3133ca81ed9ac2ac560bef30
-rwxr-xr-xMakeRelease.job5
1 files changed, 5 insertions, 0 deletions
diff --git a/MakeRelease.job b/MakeRelease.job
index 46e023ee..6df9bd32 100755
--- a/MakeRelease.job
+++ b/MakeRelease.job
@@ -97,6 +97,11 @@ fi
if test x"${fileserver}" = x; then
rsh="sh -c"
else
+ # Hardcode port 22 for the time being. We use this parameter to
+ # upload release tarballs to dev-01, but our ssh default config
+ # points to the host container where the directory with binary
+ # tarballs is not mapped.
+ fileserver="-p 22 $fileserver"
rsh="ssh $fileserver"
fi