script apps don't need shebang

This commit is contained in:
Noah Masur 2022-08-07 19:16:51 -06:00
parent e0370bf1d1
commit bdcee575db
2 changed files with 0 additions and 4 deletions

View File

@ -6,8 +6,6 @@
type = "app";
program = builtins.toString (pkgs.writeShellScript "installer" ''
#!${pkgs.stdenv.shell}
set -e
DISK=$1

View File

@ -3,8 +3,6 @@
type = "app";
program = builtins.toString (pkgs.writeShellScript "readme" ''
#!${pkgs.stdenv.shell}
${pkgs.glow}/bin/glow ${builtins.toString ../README.md}
'');