Skip to content

Commit

Permalink
Update flattool
Browse files Browse the repository at this point in the history
remove the $ in the numberOfRound subtraction to comply with shellcheck
  • Loading branch information
heliguy4599 authored Jul 5, 2023
1 parent fa863e4 commit 0e8f455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flattool
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ fixOrphans() {
3)
numberOfRound=$totalOfOrphans
for element in "${orphanedAppsList[@]}"; do
numberOfRound=$(($numberOfRound - 1))
numberOfRound=$((numberOfRound - 1))
echo -e "${boldTxt}${numberOfRound} Flatpaks to go${normalTxt}\n"
echo "For folder '${element}', choose an option"
echo -n "[T]rash, [I]install, or [S]kip: "
Expand Down

0 comments on commit 0e8f455

Please sign in to comment.