Skip to content

Commit 30ba275

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 ef3d4f4 commit 30ba275

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)