-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release automation script for copying lots of files consistently
Also include soundset edit that @CyanSMP64 implemented.
- Loading branch information
Showing
5 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@echo on | ||
set version=1.4.3 | ||
set t=Super Mario Paint | ||
title %t% %version% Release Script | ||
|
||
|
||
set src_folder=%cd% | ||
set dst_folder=%cd%\Versions\SMP%version% | ||
|
||
|
||
if exist dst_folder echo DIR_EXISTS | ||
else MKDIR dst_folder | ||
robocopy "%src_folder%\sprites" "%dst_folder%\sprites" /MIR /s /e | ||
robocopy "%src_folder%\jfx11" "%dst_folder%\jfx11" /MIR /s /e | ||
|
||
|
||
for /f "tokens=*" %%i in (flist.txt) DO ( | ||
xcopy "%src_folder%\%%i" "%dst_folder%" /Y | ||
) | ||
|
||
xcopy "%src_folder%\SMPv%version%.jar" "%dst_folder%" /Y | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
KNOWN BUGS.txt | ||
LICENSE.txt | ||
MainWindow.fxml | ||
OptionsWindow.fxml | ||
README.md | ||
SMP_J1_8.bat | ||
SMP_J9.bat | ||
soundset3.sf2 | ||
mpcv2.sf2 | ||
Version History.txt |
Binary file not shown.