相关文章推荐
小百科
›
ispack/build.bat at main · jrsoftware/ispack · GitHub
echo
build
闯红灯的爆米花
4 月前
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Files
main
Breadcrumbs
ispack
/
build.bat
Blame
Blame
Latest commit
History
History
60 lines (49 loc) · 1.22 KB
main
Breadcrumbs
ispack
/
build.bat
Top
File metadata and controls
Code
Blame
60 lines (49 loc) · 1.22 KB
Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@
echo
off
setlocal
set
VER
=
6.1.2
echo
Building Inno Setup QuickStart Pack
%VER%
...
echo
.
cd
/d
%~dp0
call
.\compile.bat
if
errorlevel
1
goto
failed
echo
Compiling files done
pause
echo
- Setup.exe
if
exist
.\setup-sign.bat (
call
.\setup-sign.bat
)
else
(
isfiles\iscc setup.iss
)
if
errorlevel
1
goto
failed
echo
- Renaming files
cd
output
if
errorlevel
1
goto
failed
move
/y mysetup.exe innosetup-qsp-
%VER%
.exe
cd
..
if
errorlevel
1
goto
failed
echo
Creating Inno Setup QuickStart Pack installer done
echo
All done!
pause
goto
exit
:
failed
echo
*** FAILED ***
cd
..
:
failed2
exit
/b
1
:
exit
推荐文章