mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
master contains current beta development
This commit is contained in:
parent
03d2ff6e0b
commit
f66dc50b5a
@ -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%
|
||||
|
||||
@ -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
|
||||
@ -1,7 +0,0 @@
|
||||
:: Batch file for BETA version
|
||||
@echo off
|
||||
setlocal
|
||||
set _VERPATCH_=beta
|
||||
echo."_%_VERPATCH_%">.\np3portableapp\_buildname.txt
|
||||
Version -VerPatch "%_VERPATCH_%"
|
||||
endlocal
|
||||
Loading…
Reference in New Issue
Block a user