Do not delete bin folder when running any clean command
This commit is contained in:
parent
42cda9cb33
commit
8039f162ea
|
@ -38,7 +38,8 @@ IF %2 == check (
|
||||||
IF %2 == clean (
|
IF %2 == clean (
|
||||||
echo cargo clean %1
|
echo cargo clean %1
|
||||||
%prefix%cargo clean
|
%prefix%cargo clean
|
||||||
@del %org_dir%\..\..\bin\%1%bin_ext%
|
rem We do not delete the bin folder anymore - is kinda to much
|
||||||
|
rem @del %org_dir%\..\..\bin\%1%bin_ext%
|
||||||
|
|
||||||
exit /B %ERRORLEVEL%
|
exit /B %ERRORLEVEL%
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue