We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76330b3 commit 64cca71Copy full SHA for 64cca71
README.md
@@ -38,7 +38,7 @@ Execute the mustache script:
38
39
```shell
40
chmod +x ./bin/mustache
41
-./bin/mustache
+./bin/mustache build
42
```
43
<br />
44
bin/mustache
@@ -217,10 +217,16 @@ if [ "$#" -gt 0 ]; then
217
elif [ "$1" == "down" ]; then
218
docker_down
219
else
220
- # shellcheck disable=SC2059
221
- printf "${On_Red}Fatal: unknown command${color_off} ${BIRed}$1${color_off}\n"
222
- exit 1
+ if [ "$1" != "build" ]; then
+ # shellcheck disable=SC2059
+ printf "${On_Red}Fatal: unknown command${color_off} ${BIRed}$1${color_off}\n"
223
+ exit 1
224
+ fi
225
fi
226
+else
227
228
+ printf "${On_Red}Fatal: no command\n"
229
230
231
232
# Execute
0 commit comments