master contains current beta development

This commit is contained in:
METANEOCORTEX\Kotti 2022-11-25 20:18:48 +01:00
parent 03d2ff6e0b
commit f66dc50b5a
3 changed files with 7 additions and 15 deletions

View File

@ -5,7 +5,13 @@
setlocal enableextensions
set SCRIPTNAME=%~dpn0.ps1
set ARGS=%*
if ["%~1"] neq [""] call :ESCAPE_ARGS
set POSTFIX=beta
if ["%POSTFIX%"] == [""] (
if ["%~1"] neq [""] call :ESCAPE_ARGS
) else (
set ARGS=-VerPatch "%POSTFIX%"
)
:POWERSHELL
PowerShell.exe -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Unrestricted -Command "& { $ErrorActionPreference = 'Stop'; & '%SCRIPTNAME%' @args; Exit $LastExitCode }" %ARGS%

View File

@ -1,7 +0,0 @@
:: Batch file for ALPHA and XPERIMENTAL version
@echo off
setlocal
set _VERPATCH_=alpha
echo."_%_VERPATCH_%">.\np3portableapp\_buildname.txt
Version -VerPatch "%_VERPATCH_%"
endlocal

View File

@ -1,7 +0,0 @@
:: Batch file for BETA version
@echo off
setlocal
set _VERPATCH_=beta
echo."_%_VERPATCH_%">.\np3portableapp\_buildname.txt
Version -VerPatch "%_VERPATCH_%"
endlocal