Tabs to two spaces.

This commit is contained in:
Sam Hardeman 2025-09-22 11:55:19 +02:00
parent 0912f2d3d4
commit 03303c9e36
6 changed files with 49 additions and 49 deletions

8
sw
View file

@ -17,16 +17,16 @@ function helpFn()
fi
echo "Usage: $DAISY_BIN <file1> <file2>"
echo Swap two files in a filesystem.
exit $ERROR
exit $ERROR
}
if [[ $@ == *"--help"* ]];
then
helpFn
helpFn
elif [[ $@ == '' ]];
then
echo "No arguments specified."
helpFn
echo "No arguments specified."
helpFn
fi
# We set a trap here, together with 'set -e' above,