Skip to content

Commit c0baeef

Browse files
committed
fix: pass extra args for purge/verify/audit/menu flags
1 parent 92efbdd commit c0baeef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

bbc.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ if /i "%1"=="menu" (
125125
if "%2"=="" (
126126
python "%BBC_HOME%\bbc.py" menu "%CD%"
127127
) else (
128-
python "%BBC_HOME%\bbc.py" menu %2
128+
python "%BBC_HOME%\bbc.py" menu %2 %3 %4 %5
129129
)
130130
exit /b %errorlevel%
131131
)
@@ -139,7 +139,7 @@ if /i "%1"=="verify" (
139139
if "%2"=="" (
140140
python "%BBC_HOME%\bbc.py" verify "%CD%"
141141
) else (
142-
python "%BBC_HOME%\bbc.py" verify %2
142+
python "%BBC_HOME%\bbc.py" verify %2 %3 %4 %5
143143
)
144144
exit /b %errorlevel%
145145
)
@@ -148,7 +148,7 @@ if /i "%1"=="audit" (
148148
if "%2"=="" (
149149
python "%BBC_HOME%\bbc.py" audit "%CD%"
150150
) else (
151-
python "%BBC_HOME%\bbc.py" audit %2
151+
python "%BBC_HOME%\bbc.py" audit %2 %3 %4 %5
152152
)
153153
exit /b %errorlevel%
154154
)
@@ -157,7 +157,7 @@ if /i "%1"=="purge" (
157157
if "%2"=="" (
158158
python "%BBC_HOME%\bbc.py" purge "%CD%"
159159
) else (
160-
python "%BBC_HOME%\bbc.py" purge %2
160+
python "%BBC_HOME%\bbc.py" purge %2 %3 %4 %5
161161
)
162162
exit /b %errorlevel%
163163
)

0 commit comments

Comments
 (0)