Skip to content

Commit

Permalink
Fix /bin/env vs /usr/bin/env vs nothing
Browse files Browse the repository at this point in the history
There's no such thing as /bin/env, though I let that slip by because my
distro redirects /bin to /usr/bin.

I believe "#! /bin/sh" is even more standard that "#! /usr/bin/env sh",
and that's what I used everywhere anyway.
  • Loading branch information
LoupVaillant committed Aug 29, 2023
1 parent 9109231 commit 03fbc67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion change-prefix.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env sh
#! /bin/sh

# This file is dual-licensed. Choose whichever licence you want from
# the two licences listed below.
Expand Down
2 changes: 1 addition & 1 deletion doc/doc_check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/env python3
#! /usr/bin/env python3

# This file is dual-licensed. Choose whichever licence you want from
# the two licences listed below.
Expand Down

0 comments on commit 03fbc67

Please sign in to comment.