Skip to content

Commit

Permalink
Fix bug with unbound variable in build_installer.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MinyazevR authored and iakov committed Nov 13, 2024
1 parent 8fbe4d5 commit 77c0e58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildScripts/github/build_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ fi
echo Start build installer
$EXECUTOR bash -c "installer/build-trik-studio.sh $QTBIN $QTIFWBIN ."

INSTALLER_NAME=$(find installer -name "trik-studio*installer*" -print -quit)

if $NEED_DEPLOY ; then
$EXECUTOR bash -c "\
INSTALLER_NAME=$(find installer -name "trik-studio*installer*" | head -n 1) \
&& rsync -v --rsh='ssh -o StrictHostKeyChecking=no' $INSTALLER_NAME $username@$host:~/dl/ts/fresh/installer/$TSNAME"
$EXECUTOR bash -c "rsync -v --rsh='ssh -o StrictHostKeyChecking=no' $INSTALLER_NAME $username@$host:~/dl/ts/fresh/installer/$TSNAME"
fi

0 comments on commit 77c0e58

Please sign in to comment.