From a214c74e02a604af054dc42339114dfd561d933a Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Mon, 1 Jun 2020 18:38:57 +0300 Subject: [PATCH] CI: build.sh: rm empty args from nix-build M build.sh --- build.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 41ba821..d7eed18 100755 --- a/build.sh +++ b/build.sh @@ -109,8 +109,7 @@ if [ "$GHCVERSION" = "ghcjs" ] --arg buildStackProject "$buildStackProject" \ "$generateOptparseApplicativeCompletion" \ --arg allowInconsistentDependencies "$allowInconsistentDependencies" \ - ghcjs \ - "$@" + ghcjs else @@ -134,8 +133,7 @@ if [ "$GHCVERSION" = "ghcjs" ] --arg disableOptimization "$disableOptimization" \ --arg buildStackProject "$buildStackProject" \ "$generateOptparseApplicativeCompletion" \ - --arg allowInconsistentDependencies "$allowInconsistentDependencies" \ - "$@" + --arg allowInconsistentDependencies "$allowInconsistentDependencies" fi }