Skip to content

Commit 9203abb

Browse files
author
arch
committed
add curent dir as first element in path
1 parent e45d225 commit 9203abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funscript_editor/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def main():
1515
args = parser.parse_args()
1616

1717
if os.getcwd() not in os.environ['PATH']:
18-
os.environ['PATH'] += os.getcwd() + os.sep
18+
os.environ['PATH'] = os.getcwd() + os.sep + os.environ['PATH']
1919

2020
if not args.generator: show_editor()
2121
else: generate_funscript(args.input, args.start, args.output)

0 commit comments

Comments
 (0)