Skip to content

Commit 60b0e82

Browse files
committed
fix: do not use local paths when starting the program via script
1 parent 9cb569a commit 60b0e82

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sudoku-tui

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/sh
22

3-
python3 "./src/app/app.py"
3+
PARENT_DIR=$(dirname $0)
4+
5+
python3 "$PARENT_DIR/src/app/app.py"

0 commit comments

Comments
 (0)