mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
don't fail building if scp fails
This commit is contained in:
parent
33a83b0e2f
commit
b87a7e808c
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ for PACK_UNSIGNED in $FILES; do
|
||||||
|
|
||||||
if [ -n "$XW_RELEASE_SCP_DEST" ]; then
|
if [ -n "$XW_RELEASE_SCP_DEST" ]; then
|
||||||
echo "running scp ${TARGET} $XW_RELEASE_SCP_DEST"
|
echo "running scp ${TARGET} $XW_RELEASE_SCP_DEST"
|
||||||
scp "${TARGET}" "$XW_RELEASE_SCP_DEST"
|
scp "${TARGET}" "$XW_RELEASE_SCP_DEST" || true
|
||||||
else
|
else
|
||||||
echo "XW_RELEASE_SCP_DEST not set; you're on your own"
|
echo "XW_RELEASE_SCP_DEST not set; you're on your own"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue