3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #195421 from pacien/writers-fish-no-config

This commit is contained in:
Lassulus 2022-10-10 23:57:12 +02:00 committed by GitHub
commit 07b6879912
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,8 +126,8 @@ let
# echo hello world
# ''
writeFish = makeScriptWriter {
interpreter = "${pkgs.fish}/bin/fish";
check = "${pkgs.fish}/bin/fish --no-execute"; # syntax check only
interpreter = "${pkgs.fish}/bin/fish --no-config";
check = "${pkgs.fish}/bin/fish --no-config --no-execute"; # syntax check only
};
# Like writeScriptBin but the first line is a shebang to fish