Skip to content

Commit 9f59a3e

Browse files
committed
cfg/cgit: stdenv.shell -> bash
1 parent 66e8096 commit 9f59a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cfg/cgit.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ in
5252
5353
# Filter for files shown in the "about" page
5454
about-filter=${pkgs.writeScript "cgit-about-filter.sh" ''
55-
#!${pkgs.stdenv.shell}
55+
#!${pkgs.bash}/bin/sh
5656
# The filename is available as first argument, but the filter
5757
# should read contents from STDIN (and write to STDOUT).
5858
filename=$1
@@ -75,7 +75,7 @@ in
7575
''}
7676
7777
commit-filter=${pkgs.writeScript "cgit-commit-filter.sh" ''
78-
#!${pkgs.stdenv.shell}
78+
#!${pkgs.bash}/bin/sh
7979
regex=
8080
# This expression generates links to commits referenced by their SHA1.
8181
regex=$regex'

0 commit comments

Comments
 (0)