mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-05-22 13:14:04 +00:00
15 lines
324 B
Batchfile
15 lines
324 B
Batchfile
@echo off
|
|
|
|
echo Removing the plugins directory...
|
|
rmdir /s /q ".\plugins"
|
|
if exist ".\plugins" (
|
|
echo Warning: Failed to remove the plugins directory.
|
|
)
|
|
|
|
echo Removing the dist directory...
|
|
rmdir /s /q ".\dist"
|
|
if exist ".\dist" (
|
|
echo Warning: Failed to remove the dist directory.
|
|
)
|
|
|
|
echo Done removing directories. |