8000 add python path and fix s.bat without parameter · codepongo/utocode@17cbcf0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 17cbcf0

Browse files
committed
add python path and fix s.bat without parameter
1 parent 4f437e5 commit 17cbcf0

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

recite/p.bat

8000
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
@echo off
2+
set path=%path%;c:\python27
23
python p.py %1

recite/r.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
@echo off
2+
set path=%path%;c:\python27
23
call python recite.py

recite/review.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
@echo off
2+
set path=%path%;c:\python27
23
call python review.py

recite/s.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
@echo off
2+
set path=%path%;c:\python27
23
if [%1] == [] goto:without_argument
34
call python recite.py %1
45
goto :exit
56
:without_argument
67
echo "call python recite.py 0"
7-
call python recite.py %1
8+
call python recite.py 0
89
:exit
910

1011

0 commit comments

Comments
 (0)
0