1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Scripts: Consistent use of booleans

This commit is contained in:
RGBCube 2023-05-06 14:37:48 +03:00
parent e7cdc93084
commit 3b452af7d3

View file

@ -1,6 +1,6 @@
#!/bin/sh
if [[ $1 = "--help" ]] || [[ $1 = "-h" ]]; then
if [[ $1 == "--help" || $1 == "-h" ]]; then
echo "Usage: rebuild.sh [-h | --help] [-c | --clean-garbage] [machine]"
exit
fi