Add packaging helper
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
b2856e8b32
commit
f665abe483
1 changed files with 16 additions and 0 deletions
16
pack.bat
Normal file
16
pack.bat
Normal file
|
@ -0,0 +1,16 @@
|
|||
@echo off
|
||||
|
||||
setlocal enabledelayedexpansion
|
||||
set BUILDDIR=%~dp0
|
||||
|
||||
call :pack hr-apple || goto :error
|
||||
call :pack sl-apple || goto :error
|
||||
exit /b 0
|
||||
|
||||
:pack
|
||||
set BASENAME=%1
|
||||
tar.exe -c -f "%BUILDDIR%%BASENAME%.zip" -C "%BUILDDIR%." "%BASENAME%" license.txt readme.md
|
||||
goto :eof
|
||||
|
||||
:error
|
||||
cmd /c exit %errorlevel%
|
Loading…
Add table
Reference in a new issue