Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 41bfb6c

Browse files
fix(scripts): use portable shebang
Switch `#!/bin/sh` to `#!/usr/bin/env sh` so scripts work on Windows as well as Linux and MacOS.
1 parent 24b22b4 commit 41bfb6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -e
1+
#!/usr/bin/env sh -e
22

33
export PREFIX="poetry run python -m "
44
if [ -d 'venv' ] ; then

scripts/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -e
1+
#!/usr/bin/env sh -e
22

33
export PREFIX="poetry run python -m "
44
if [ -d 'venv' ] ; then

0 commit comments

Comments
 (0)