diff options
author | Soispha <soispha@vhack.eu> | 2023-10-25 15:46:03 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-25 15:46:03 +0200 |
commit | ce99b2f2a666bf358baaf8f8204367b472fc45f8 (patch) | |
tree | a00d885aef218e6ef9ced1d3bc269c6cfb9e407d | |
parent | feat(hm/conf/firefox/extensions): Switch to my libredirect fork (diff) | |
download | nixos-config-ce99b2f2a666bf358baaf8f8204367b472fc45f8.tar.gz nixos-config-ce99b2f2a666bf358baaf8f8204367b472fc45f8.zip |
fix(hm/conf/lf/cmds/mk_scr_temp): Set the interpreter to 'sh'
Diffstat (limited to '')
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/mk_scr_temp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hm/soispha/conf/lf/commands/scripts/mk_scr_temp b/hm/soispha/conf/lf/commands/scripts/mk_scr_temp index 9d38c3f5..0bf141d9 100755 --- a/hm/soispha/conf/lf/commands/scripts/mk_scr_temp +++ b/hm/soispha/conf/lf/commands/scripts/mk_scr_temp @@ -24,6 +24,7 @@ done script="$(pwd)"/"$name" sed 's|%TO_BE_SHELL_LIBRARY_PATH|%SHELL_LIBRARY_PATH|' "%SHELL_LIBRARY_TEMPLATE" > "$script" +sed -i 's|dash|sh|' "$script" chmod +x "$script" "$VISUAL" "$script" |