Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: installer/createsolutions.bat

Issue 5924532154007552: Issue 1149 - Fix the installer version (Closed)
Left Patch Set: Created Aug. 12, 2014, 1:32 a.m.
Right Patch Set: Use revision number for devbuilds and IEPLUGIN_VERSION otherwise Created Aug. 12, 2014, 9:25 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « build_release.py ('k') | installer/installer.gyp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 @echo off 1 @echo off
2 IF %1.==. GOTO NoVersion 2 set version=%1
3 IF %1.==. set version=99.9
3 pushd %~dp0 4 pushd %~dp0
4 set version=%1
5 python ..\libadblockplus\msvs_gyp_wrapper.py --depth=build\ia32 -f msvs --genera tor-output=build\ia32 -G msvs_version=2012 -Dtarget_arch=ia32 -Dversion=%version % installer.gyp 5 python ..\libadblockplus\msvs_gyp_wrapper.py --depth=build\ia32 -f msvs --genera tor-output=build\ia32 -G msvs_version=2012 -Dtarget_arch=ia32 -Dversion=%version % installer.gyp
6 python ..\libadblockplus\msvs_gyp_wrapper.py --depth=build\x64 -f msvs --genera tor-output=build\x64 -G msvs_version=2012 -Dtarget_arch=x64 -Dversion=%version% installer.gyp 6 python ..\libadblockplus\msvs_gyp_wrapper.py --depth=build\x64 -f msvs --genera tor-output=build\x64 -G msvs_version=2012 -Dtarget_arch=x64 -Dversion=%version% installer.gyp
7 popd 7 popd
8 GOTO end
Felix Dahlke 2014/08/12 07:49:58 Shouldn't that be "End" for consistency with "NoVe
9
10 :NoVersion
11 echo Usage: createsolutions.bat VERSION
Eric 2014/08/12 02:11:13 It was quite useful for me to have a default devel
12
13 :end
LEFTRIGHT

Powered by Google App Engine
This is Rietveld