Skip to content

Commit

Permalink
Don't run updater with --verbose on Linux
Browse files Browse the repository at this point in the history
The option is mostly useful for debugging so can be specified manually.
The Windows (.bat) updater doesn't set it either, so this is consistent
  • Loading branch information
Flamefire committed Sep 2, 2024
1 parent bbbb67a commit 44bc710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/release/bin/rttr.sh.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [ $noupdate -eq 0 ] ; then
echo "checking for an update ..."
cp $DIR/../libexec/s25rttr/s25update /tmp/s25update.$$
chmod 0755 /tmp/s25update.$$
/tmp/s25update.$$ --verbose --dir "$DIR/../" @STABLE_PARAM@
/tmp/s25update.$$ --dir "$DIR/../" @STABLE_PARAM@
if [ -z "$(diff -q /tmp/s25update.$$ $DIR/../libexec/s25rttr/s25update)" ] ; then
PARAM=noupdate
fi
Expand Down

0 comments on commit 44bc710

Please sign in to comment.