Add packaging helper

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-12-29 10:25:11 +01:00
parent b2856e8b32
commit f665abe483

16
pack.bat Normal file
View 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%