Skip to content

Commit 115546a

Browse files
committed
Use /usr/bin/env for Python and Stack
1 parent abadb2f commit 115546a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: shebang-scripts/today/haskell

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
#! /Users/adrian/.ghcup/bin/stack
1+
#! /usr/bin/env stack
22
-- stack script --package time --snapshot lts-22.22
33

4+
-- TODO: Absolute path to `stack` needs to be the same in CI and local
5+
46
import Data.Time
57

68
main :: IO ()

Diff for: shebang-scripts/today/python

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#! /Users/adrian/.rye/shims/python
1+
#! /usr/bin/env python
2+
# TODO: Absolute path to bun needs to be the same in CI and local
23

34
import datetime
45

0 commit comments

Comments
 (0)