Skip to content

Commit

Permalink
setup: fix marker file deletion
Browse files Browse the repository at this point in the history
Marker file is conditionally created but was unconditionally deleted.
  • Loading branch information
marcone committed Jun 1, 2024
1 parent 8f22b0b commit 7e5a972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/generic/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ then
} | bash -s 3G
exit 0
fi
rm "$marker"
rm -f "$marker"
# shrink root partition to match root file system size
echo "shrinking root partition to match root fs, $fsnumsectors sectors"
sleep 3
Expand Down

0 comments on commit 7e5a972

Please sign in to comment.