File: makeall.bat

package info (click to toggle)
packetsender 8.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,532 kB
  • sloc: cpp: 12,123; sh: 80; xml: 75; php: 47; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
IF %1.==. GOTO No1
PUSHD %TMP%
rd /s /q PacketSender
git clone --depth 1 -b development git@github.com:dannagle/PacketSender.git
cd PacketSender
REM Setting Version Numbers
call ci_cd\windows\win-prebuild.bat %1
REM Building app
call ci_cd\windows\win-build.bat
REM Building installers
call ci_cd\windows\win-deploy.bat
POPD

GOTO End1

:No1
  ECHO Need build version param (such as 8.4.3)
:End1