Skip to content

Commit

Permalink
Disable shellcheck
Browse files Browse the repository at this point in the history
This breaks eval on aarch64-linux due to the dependency on GHC.
  • Loading branch information
edolstra committed Dec 12, 2017
1 parent 7487deb commit c6e15c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release.nix
Expand Up @@ -123,7 +123,7 @@ let

runCommand "nix-binary-tarball-${version}"
{ exportReferencesGraph = [ "closure1" toplevel "closure2" cacert ];
buildInputs = [ perl shellcheck ];
buildInputs = [ perl /* shellcheck */ ];
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
}
''
Expand All @@ -136,8 +136,8 @@ let
--subst-var-by nix ${toplevel} \
--subst-var-by cacert ${cacert}
shellcheck -e SC1090 $TMPDIR/install
shellcheck -e SC1091,SC2002 $TMPDIR/install-darwin-multi-user
#shellcheck -e SC1090 $TMPDIR/install
#shellcheck -e SC1091,SC2002 $TMPDIR/install-darwin-multi-user
chmod +x $TMPDIR/install
chmod +x $TMPDIR/install-darwin-multi-user
Expand Down

0 comments on commit c6e15c4

Please sign in to comment.