From f7ce4da8355bdaf61f18d2a871433c68d3558e91 Mon Sep 17 00:00:00 2001 From: Jeremy Abbott Date: Thu, 19 Jul 2018 08:10:23 -0700 Subject: [PATCH] Only pass args to fake if there are any --- build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index e24952b..d4f18f5 100755 --- a/build.sh +++ b/build.sh @@ -12,4 +12,8 @@ if [ ! -f build.fsx ]; then fake run init.fsx fi -fake build $@ +if [[ $# -eq 0 ]] ; then + fake build +else + fake build $@ +fi