mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-01-31 17:53:01 +02:00
13 lines
236 B
Batchfile
13 lines
236 B
Batchfile
@ECHO OFF
|
|
|
|
SET SourceDir=%CD%
|
|
SET DestDir=%CD%
|
|
|
|
for %%f in (*.rbxl) do (
|
|
if "%%~xf"==".rbxl" (
|
|
"C:\Program Files\7-Zip\7z.exe" a "%DestDir%\%%f.bz2" "%SourceDir%\%%f"
|
|
del "%%f"
|
|
)
|
|
)
|
|
|
|
del "%SourceDir%\compress.bat" |