diff options
-rwxr-xr-x | .gitcheck | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -21,8 +21,10 @@ Clean(){ } Run(){ -if [ "${1}" = "clean" ]; then - Clean +if [ $# -gt 0 ]; then + if [ "${1}" = "clean" ]; then + Clean + fi else Set_placeholder |
index : lbmk.git | ||
libreboot build system (LibreBoot MaKe) |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | .gitcheck | 6 |
@@ -21,8 +21,10 @@ Clean(){ } Run(){ -if [ "${1}" = "clean" ]; then - Clean +if [ $# -gt 0 ]; then + if [ "${1}" = "clean" ]; then + Clean + fi else Set_placeholder |