From 336cb3c2bf329048e23f3baa193bd8a5d7a4da2d Mon Sep 17 00:00:00 2001 From: Til Blechschmidt Date: Thu, 28 Feb 2019 00:06:53 +0100 Subject: [PATCH] Made build the default action if no parameter is given. --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index 13ac8eb..6f8952e 100755 --- a/build.sh +++ b/build.sh @@ -64,4 +64,5 @@ case $1 in build) build;; watch) watch;; spellcheck) spellcheck;; + *) build;; esac