mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-25 20:28:37 -06:00
Fix update flag bug
This commit is contained in:
parent
62da941cbe
commit
2e2a8cf451
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ for artifact in "${!artifacts[@]}"; do
|
|||
done
|
||||
|
||||
# Exit if no updates happened
|
||||
if [[ $flag==false && "$2" != "force" ]]; then
|
||||
if [[ $flag == false && "$2" != "force" ]]; then
|
||||
echo "Nothing to update" | tee -a build.log
|
||||
exit
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue