Skip to content

Commit 22eecb0

Browse files
committed
run.sh and run.bat updated
1 parent d066e63 commit 22eecb0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ set "venv_dir=%script_dir%venv"
66

77
if not exist "%venv_dir%" (
88
python3 -m venv "%venv_dir%"
9-
"%venv_dir%\Scripts\python3" -m pip --require-virtualenv install --upgrade pip build
9+
"%venv_dir%\Scripts\python" -m pip --require-virtualenv install --upgrade pip build
1010
)
1111

12-
"%venv_dir%\Scripts\python3" %*
12+
"%venv_dir%\Scripts\python" %*
1313

1414
endlocal

run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ venv_dir="$script_dir/venv"
66

77
if [[ ! -d "$venv_dir" ]]; then
88
python3 -m venv "$venv_dir"
9-
"$venv_dir/bin/python3" -m pip --require-virtualenv install --upgrade pip build
9+
"$venv_dir/bin/python" -m pip --require-virtualenv install --upgrade pip build
1010
fi
1111

12-
"$venv_dir/bin/python3" "$@"
12+
"$venv_dir/bin/python" "$@"

0 commit comments

Comments
 (0)