commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
eef95aede0ea2b2cad3e1d8553a08d1686213a9f | build.cmd | build.cmd | @echo off
cls
IF NOT EXIST "build\tools\FAKE.Core\tools\Fake.exe" (
"tools\nuget\nuget.exe" install "NUnit.Runners" -OutputDirectory "build\tools" -ExcludeVersion -Version 2.6.4
"tools\nuget\nuget.exe" install "FAKE.Core" -OutputDirectory "build\tools" -ExcludeVersion -Version 4.60.0
)
"build\tools\FAKE.Core\tool... | @echo off
cls
IF NOT EXIST "build\tools\FAKE.Core\tools\Fake.exe" (
"tools\nuget\nuget.exe" install "NUnit.Runners" -OutputDirectory "build\tools" -ExcludeVersion -Version 2.6.4
"tools\nuget\nuget.exe" install "FAKE.Core" -OutputDirectory "build\tools" -ExcludeVersion -Version 4.64.13
)
"build\tools\FAKE.Core\too... | Use latest FAKE.Core 4.x version | Use latest FAKE.Core 4.x version
| Batchfile | mit | Zvirja/ReSharperHelpers |
617d6bbe972ecc145b1a9cfa1743a72dd92b0a10 | make.cmd | make.cmd | cd make
node node_make.js debug
node node_make.js release
cd ..
if not exist ..\ArnaudBuchholz.github.io goto end
copy build\gpf.js ..\ArnaudBuchholz.github.io\
copy build\gpf-debug.js ..\ArnaudBuchholz.github.io\
plato -d ..\ArnaudBuchholz.github.io\plato\gpf-js -t GPF-JS -l .jshintrc *.js
:end | cd make
node node_make.js debug
node node_make.js release
cd ..
if not exist ..\ArnaudBuchholz.github.io goto end
copy build\gpf.js ..\ArnaudBuchholz.github.io\
copy build\gpf-debug.js ..\ArnaudBuchholz.github.io\
plato -x coding_convention.js -d ..\ArnaudBuchholz.github.io\plato\gpf-js -t GPF-JS -l .jshintrc *.js
:end | Make now includes Plato statistics | Make now includes Plato statistics
| Batchfile | mit | ArnaudBuchholz/gpf-js,ArnaudBuchholz/gpf-js |
2a3731c912ae6cc2d2c5be6188d15a3002ee2095 | src/scripts/ci/setup_appveyor.bat | src/scripts/ci/setup_appveyor.bat |
echo Current build setup CC="%CC%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %CC% == VC2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
if %CC% == VC2019p call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat"... |
echo Current build setup CC="%CC%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %CC% == VC2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
if %CC% == VC2019p call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat"... | Use an if/else in the batch script | Use an if/else in the batch script
| Batchfile | bsd-2-clause | randombit/botan,randombit/botan,randombit/botan,randombit/botan,randombit/botan |
17bb69635d96183f399f8f9952e7f04ec549509b | tools/testcoverage.bat | tools/testcoverage.bat | cd ..
set "destination=testcoverage"
rmdir /q /s %destination%
mkdir %destination%
cd content/tests
dotnet test /p:AltCover=true
mv coverage.xml ../../%destination%/coverage.xml
cd ../../%destination%
set "reportgenerator=%UserProfile%\.nuget\packages\reportgenerator\4.0.7\tools\net47\ReportGenerator.exe"
set "targe... | cd ..
set "destination=testcoverage"
rmdir /q /s %destination%
mkdir %destination%
cd content/tests
dotnet test /p:AltCover=true
mv coverage.xml ../../%destination%/coverage.xml
cd ../../%destination%
set "reportgenerator=%UserProfile%\.nuget\packages\reportgenerator\4.0.11\tools\net47\ReportGenerator.exe"
set "targ... | Update to tools for reportgenerator | Update to tools for reportgenerator
| Batchfile | mit | Jaxelr/Nancy.Template.Webservice,Jaxelr/Nancy.Template.Webservice |
d82cffa111e10bd259c451687ba9e351da3d424b | test.cmd | test.cmd | @echo off
pushd "%~dp0"
call build && dotnet test --no-restore --no-build NCrontab.Tests
popd
| @echo off
pushd "%~dp0"
call build ^
&& call :test Debug ^
&& call :test Release ^
popd
goto :EOF
:test
dotnet test --no-restore --no-build -c %1 NCrontab.Tests
goto :EOF
| Test debug & release configs | Test debug & release configs
| Batchfile | apache-2.0 | atifaziz/NCrontab,atifaziz/NCrontab |
8b03786cb6811df115c34928770f6e43c565db22 | !push.cmd | !push.cmd | .nuget\NuGet.exe push src\DelegateDecompiler\bin\Release\*.nupkg -ApiKey %1
| for /r %%x in (src\DelegateDecompiler\bin\Release\*.nupkg) do .nuget\NuGet.exe push %%x -ApiKey %1
| Update push script to push packages separately | Update push script to push packages separately
| Batchfile | mit | morgen2009/DelegateDecompiler,hazzik/DelegateDecompiler,jaenyph/DelegateDecompiler |
f68aa482fcd2665e80b2bad4f100684806e911df | Clean.bat | Clean.bat | FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S node_modules') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Packages') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B ... | FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S node_modules') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Packages') DO RMDIR /S /Q "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B ... | Delete uwp app packages too! | Delete uwp app packages too!
| Batchfile | mit | bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework |
3bd7585a0ed5ac52a434b575fb5e03de9cee9ce0 | tools/release_win.bat | tools/release_win.bat | rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
rmdir /q /s dist\*.*
del /s /q dist\*.*
rem ****** Compile our executable and core zipfile
python setup.py py2e... | rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
del /s /f /q dist
rem ****** Compile our executable and core zipfile
python setup.py py2exe
rem ****** Remove... | Remove wildcard from del statement | Remove wildcard from del statement
| Batchfile | apache-2.0 | catap/namebench,jimmsta/namebench-1 |
67c10202fa5afd27405d1258ac63536bb1f497f6 | setenv.bat | setenv.bat | @ECHO OFF
PUSHD %~DP0
SET CURDIR=%CD%
PUSHD ..
SET TOPDIR=%CD%
POPD
POPD
SET GDAL_ROOT=%TOPDIR%\bin\gdal
rem SET GDAL_PAM_PROXY_DIR=%TEMP%
SET GDAL_DATA=%GDAL_ROOT%\share\gdal-data
SET GEOTIFF_CSV=%GDAL_DATA%
SET PROJ_LIB=%GDAL_ROOT%\share\proj
SET GDAL_DRIVER_PATH=%GDAL_ROOT%\bin\plugins
SET PYTHONHO... | @ECHO OFF
PUSHD %~DP0
SET CURDIR=%CD%
PUSHD ..
SET TOPDIR=%CD%
POPD
POPD
SET GDAL_ROOT=%TOPDIR%\bin\gdal
rem SET GDAL_PAM_PROXY_DIR=%TEMP%
SET GDAL_DATA=%GDAL_ROOT%\share\gdal-data
SET GEOTIFF_CSV=%GDAL_DATA%
SET PROJ_LIB=%GDAL_ROOT%\share\proj
SET GDAL_DRIVER_PATH=%GDAL_ROOT%\bin\plugins
SET PYTHONHO... | Clean out the PAHT env var to hopefully avoid more missing/extra dependencies | Clean out the PAHT env var to hopefully avoid more missing/extra dependencies | Batchfile | mit | ssutee/metageta,NikosAlexandris/metageta,NikosAlexandris/metageta,simonaoliver/metageta,lpinner/metageta |
390b86cc2c94f2ad41e22a0b706bfd889d732818 | recipes/ocp/bld.bat | recipes/ocp/bld.bat | set CONDA_PREFIX=%PREFIX%
if errorlevel 1 exit 1
cmake -B build -S "%SRC_DIR%" ^
-G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DPython3_FIND_STRATEGY=LOCATION ^
-DPython3_ROOT_DIR=%CONDA_PREFIX% ^
-DCMAKE_LINKER=lld-link.exe
if errorlevel 1 exit 1
cmake --build build -j %CPU_COUNT% -- -v -k 0
if errorleve... | set CONDA_PREFIX=%PREFIX%
if errorlevel 1 exit 1
cmake -B build -S "%SRC_DIR%" ^
-G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DPython3_FIND_STRATEGY=LOCATION ^
-DPython3_ROOT_DIR=%CONDA_PREFIX% ^
-DCMAKE_LINKER=lld-link.exe ^
-DCMAKE_MODULE_LINKER_FLAGS="/FORCE:MULTIPLE"
if errorlevel 1 exit 1
cmake ... | Add /FORCE:MULTIPLE to Windows linker flags | Add /FORCE:MULTIPLE to Windows linker flags
| Batchfile | bsd-3-clause | mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,ja... |
01dfedae60d0f7fe9b4eda4a7c9eb2d9d44a8910 | build.cmd | build.cmd | @echo off
setlocal
set _projectName=CommandLine
set _solution=%_projectName%.sln
set _codeProject=src\%_projectName%.csproj
set _analyzerProject=analyzer\%_projectName%.Analyzer\%_projectName%.Analyzer.csproj
set _testProject=test\%_projectName%.tests.csproj
set _config=%1
if not defined _config (
set _config=Debug... | @echo off
setlocal
set _projectName=CommandLine
set _solution=%_projectName%.sln
set _codeProject=src\%_projectName%.csproj
set _analyzerProject=analyzer\%_projectName%.Analyzer\%_projectName%.Analyzer.csproj
set _testProject=test\%_projectName%.tests.csproj
set _config=%1
if not defined _config (
set _config=Debug... | Make sure the package is created in the bin folder. | Make sure the package is created in the bin folder.
| Batchfile | mit | AlexGhiondea/CommandLine,AlexGhiondea/CommandLine |
5a404cbe5909084282b7e66e1024bb1f44bf92aa | clean.cmd | clean.cmd | @echo off
pushd "%~dp0"
for %%i in (Debug Release) do "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild" /target:Clean /p:Configuration=%%i src\NCrontab.sln
popd
| @"%~dp0build" /v:n /target:Clean
| Clean script can simply delegate to build script | Clean script can simply delegate to build script
| Batchfile | apache-2.0 | atifaziz/NCrontab,atifaziz/NCrontab |
67de21f629b737d91c024269c4345007d56db22c | ci/scripts/build-project-windows.bat | ci/scripts/build-project-windows.bat | SET "JAVA_HOME=C:\opt\jdk-8"
cd git-repo
./mvnw clean install -X | SET "JAVA_HOME=C:\opt\jdk-8"
cd git-repo
./mvnw clean install | Stop using debug flag for Windows build | Stop using debug flag for Windows build
| Batchfile | apache-2.0 | snicoll/initializr,spring-io/initializr,spring-io/initializr,snicoll/initializr,spring-io/initializr,snicoll/initializr |
0e6e1f66bfe33676652e00d10d24402ce15cd89a | build.bat | build.bat | @echo on
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
if not "%GitVersion.ClassicVersion%" == "" (
REM override version number with the one provided by git
set version=%GitVersion.ClassicVersion%
echo Versi... | @echo on
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
if not "%GitVersion.ClassicVersion%" == "" (
REM override version number with the one provided by git
set version=%GitVersion.ClassicVersion%
echo Versi... | Build script now logs to console | Build script now logs to console
| Batchfile | mit | stevelong00/WiFi-Library,stevelong00/WiFi-Library |
6673a1297fc80d5fa1df89d57a7a645382431d80 | build.cmd | build.cmd | @echo off
cd %~dp0
SETLOCAL ENABLEEXTENSIONS
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreferen... | @echo off
cd %~dp0
SETLOCAL ENABLEEXTENSIONS
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreferen... | Use myget feed to download KoreBuild package | Use myget feed to download KoreBuild package | Batchfile | apache-2.0 | artiomchi/R4MVC,wwwlicious/R4MVC,wwwlicious/R4MVC,artiomchi/R4MVC,wwwlicious/R4MVC,T4MVC/R4MVC |
8ac1349c3f49895b3e2053ba302fa970c40db2e2 | build.cmd | build.cmd | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 Preview or
echo Micr... | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 or
echo Microsoft Bu... | Remove 'Preview' qualifier from VS and MSBuild | Remove 'Preview' qualifier from VS and MSBuild
Firstly, they don't add much and secondly, we'll have to remove them
eventually anyways.
| Batchfile | mit | shiftkey/codeformatter,rollie42/codeformatter,jaredpar/codeformatter,michaelcfanning/codeformatter,dotnet/codeformatter,mmitche/codeformatter,weltkante/codeformatter,jeremyabbott/codeformatter,BertTank/codeformatter,Maxwe11/codeformatter,david-mitchell/codeformatter,rainersigwald/codeformatter,twsouthwick/codeformatter... |
da3cfdb7f56cb58640b038e9749dfc74d0b027c8 | build.cmd | build.cmd | @echo Off
set config=%1
if "%config%" == "" (
set config=debug
)
.nuget\NuGet.exe restore JabbR.sln -configFile %~dp0\.nuget\NuGet.config -nocache
msbuild %~dp0\Build\Build.proj /p:Configuration="%config%" /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false /p:VisualStudioVersion=11.0 | @echo Off
set config=%1
if "%config%" == "" (
set config=debug
)
.nuget\NuGet.exe restore JabbR.sln -configFile %~dp0\.nuget\NuGet.config -nocache
msbuild %~dp0\Build\Build.proj /p:Configuration="%config%" /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false | Remove the vs version flag. | Remove the vs version flag.
| Batchfile | mit | yadyn/JabbR,fuzeman/vox,LookLikeAPro/JabbR,timgranstrom/JabbR,18098924759/JabbR,yadyn/JabbR,CrankyTRex/JabbRMirror,borisyankov/JabbR,18098924759/JabbR,CrankyTRex/JabbRMirror,JabbR/JabbR,borisyankov/JabbR,LookLikeAPro/JabbR,fuzeman/vox,timgranstrom/JabbR,JabbR/JabbR,CrankyTRex/JabbRMirror,ajayanandgit/JabbR,M-Zuber/Jabb... |
d81933531593bad7e9263a9a01b8b1aa34281f8a | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Remove w9xopen.exe and add README.txt to Windows build | Remove w9xopen.exe and add README.txt to Windows build | Batchfile | apache-2.0 | somehume/namebench |
4045dda98cdf61c998e18d898d4108588385c8dc | bootstrap.cmd | bootstrap.cmd | @echo off
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
NuGet.exe install NUnit.Runners -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
NuGet.exe install Wix.Toolset -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive | @echo off
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
NuGet.exe install NUnit.Runners -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive -Version 2.6.4
NuGet.exe install Wix.Toolset -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive | Set nuget version to use as 2.6.4 | [nunit] Set nuget version to use as 2.6.4
| Batchfile | mit | dblock/waffle,hazendaz/waffle,hazendaz/waffle,AriSuutariST/waffle,Waffle/waffle,dblock/waffle,hazendaz/waffle,dblock/waffle,AriSuutariST/waffle,Waffle/waffle,AriSuutariST/waffle,AriSuutariST/waffle,Waffle/waffle,dblock/waffle |
316e57868a0ce9efe06195a14f689e7945e17281 | ci/install_npcap.bat | ci/install_npcap.bat | set NPCAP_OEM_FILE=npcap-0.9988-oem.exe
curl --digest --user %NPCAP_USERNAME%:%NPCAP_PASSWORD% https://nmap.org/npcap/oem/dist/%NPCAP_OEM_FILE% --output %NPCAP_OEM_FILE%
%NPCAP_OEM_FILE% /S /winpcap_mode
xcopy C:\Windows\System32\Npcap\*.dll C:\Windows\System32
xcopy C:\Windows\SysWOW64\Npcap\*.dll C:\Windows\SysWOW64
... | set NPCAP_OEM_FILE=npcap-0.9988-oem.exe
curl --digest --user %NPCAP_USERNAME%:%NPCAP_PASSWORD% https://nmap.org/npcap/oem/dist/%NPCAP_OEM_FILE% --output %NPCAP_OEM_FILE%
%NPCAP_OEM_FILE% /S /winpcap_mode
appveyor DownloadFile https://nmap.org/npcap/dist/npcap-sdk-1.04.zip
mkdir C:\Npcap-sdk
7z x .\npcap-sdk-1.04.zip -o... | Remove xcopy from Npcap install script | Remove xcopy from Npcap install script
| Batchfile | unlicense | seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus |
ca63a66ad6ded4dd109b0bb9b4c6d9782c6b2557 | recipes/cppast/bld.bat | recipes/cppast/bld.bat | setlocal EnableDelayedExpansion
mkdir build
cd build
cmake -G "NMake Makefiles" ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_BUILD_TYPE:STRING=Release ^
-DCMAKE_LIBRARY_PATH:PATH="%LIBRARY_PREFIX%;%LIBRARY_PREFIX%/bin" ^
..
if e... | setlocal EnableDelayedExpansion
mkdir build
cd build
cmake -G "NMake Makefiles" ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_BUILD_TYPE:STRING=Release ^
-DCMAKE_LIBRARY_PATH:PATH="%LIBRARY_PREFIX%;%LIBRARY_PREFIX%/bin" ^
-DBUILD... | Build shared library on Windows | Build shared library on Windows
| Batchfile | bsd-3-clause | conda-forge/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes |
d8aaf06b9b0d4b0238a8cce564ee8aed3645df01 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/da0885fc7a8a2facba79a8b5ca818ed6a730d856
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/eddc60f7017a05a02bd9b19b3162ce58a10de81a
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update kuduscript to latest for adding python support | Update kuduscript to latest for adding python support
| Batchfile | apache-2.0 | projectkudu/kudu,juvchan/kudu,uQr/kudu,YOTOV-LIMITED/kudu,dev-enthusiast/kudu,puneet-gupta/kudu,oliver-feng/kudu,barnyp/kudu,juvchan/kudu,shibayan/kudu,duncansmart/kudu,uQr/kudu,mauricionr/kudu,puneet-gupta/kudu,oliver-feng/kudu,chrisrpatterson/kudu,chrisrpatterson/kudu,shrimpy/kudu,YOTOV-LIMITED/kudu,kenegozi/kudu,bad... |
f324f8d0a0c21f47a1a9774a636682a4c9e6025d | windows/floppy/windows-2012-standard-amd64-vagrant/configure.bat | windows/floppy/windows-2012-standard-amd64-vagrant/configure.bat | :: %~dp0 gives the dirname of the script
cmd /c %~dp0firewall-disable.bat
cmd /c %~dp0vagrant-ssh.bat
| :: %~dp0 gives the dirname of the script
cmd /c %~dp0firewall-disable.bat
cmd /c %~dp0install-cygwin-sshd.bat
| Fix path to install cygwin. | Fix path to install cygwin.
| Batchfile | mpl-2.0 | michel-slm/packer-qemu-templates,mbassett/packer-qemu-templates,gregjan/packer-qemu-templates,jakobadam/packer-qemu-templates,entropicgestalt/packer-qemu-templates |
6805ecc7cb7c022ca30dcbc71eeb25449fee620d | build/nuget/build-nupkg.cmd | build/nuget/build-nupkg.cmd | @ECHO OFF
WHERE /Q nuget >NUL
IF %ERRORLEVEL% NEQ 0 (
ECHO nuget not found.
ECHO.
ECHO Run "%~pd0download-nuget.cmd" to download the latest version, or update PATH as appropriate.
GOTO END
)
nuget pack %~dp0WindowsCanvas.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %*
nuget pack %~dp0Win... | @ECHO OFF
PUSHD %~dp0
WHERE /Q nuget >NUL
IF %ERRORLEVEL% NEQ 0 (
ECHO nuget not found.
ECHO.
ECHO Run "%~pd0download-nuget.cmd" to download the latest version, or update PATH as appropriate.
GOTO END
)
nuget pack %~dp0WindowsCanvas.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %*
nuget ... | Fix build script to also work when nuget.exe isn't in the path | Fix build script to also work when nuget.exe isn't in the path
| Batchfile | mit | ChrisBriggsy/Win2D,zjsxwc/Win2D,ChrisBriggsy/Win2D,LanceMcCarthy/Win2D,ChrisBriggsy/Win2D,zjsxwc/Win2D,LanceMcCarthy/Win2D,LanceMcCarthy/Win2D,zjsxwc/Win2D |
08f9318753f6f0a376b447f6ff2c8415b5429a1e | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Remove w9xopen.exe and add README.txt to Windows build | Remove w9xopen.exe and add README.txt to Windows build
| Batchfile | apache-2.0 | jimmsta/namebench-1,catap/namebench |
bcbf8056f42195d87fba6fa8d225f7c9406e2d4a | buildscript/modules/lavapipejson.cmd | buildscript/modules/lavapipejson.cmd | @setlocal ENABLEDELAYEDEXPANSION
@set jsonlines=0
@for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @for /f tokens^=^*^ delims^= %%b IN (%%a) do @(
@set /a jsonlines+=1
@IF !jsonlines! NEQ 4 set jsonline[!jsonlines!]=%%b
@IF !jsonlines! EQU 4 set jsonline[!jsonlines!]= "library_path": "vulkan... | @setlocal ENABLEDELAYEDEXPANSION
@set jsonlines=0
@for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @for /f tokens^=^*^ delims^= %%b IN (%%a) do @(
@set /a jsonlines+=1
@IF !jsonlines! NEQ 4 set jsonline[!jsonlines!]=%%b
@IF !jsonlines! EQU 4 set jsonline[!jsonlines!]= "library_path": ".^\^\v... | Fix lavapipe JSON patcher. Fixes 0a775146 | Fix lavapipe JSON patcher. Fixes 0a775146
| Batchfile | mit | pal1000/mesa-dist-win,pal1000/mesa-dist-win |
038a5fdd65824a386e28048a43634f1170e11d1e | .buildkite/sign_windows_installer.bat | .buildkite/sign_windows_installer.bat | @echo off
rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable.
rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent.
rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline art... | @echo off
rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable.
rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent.
rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline art... | Add period to the signed name. | Add period to the signed name.
| Batchfile | mit | indirectlylit/kolibri,learningequality/kolibri,indirectlylit/kolibri,indirectlylit/kolibri,mrpau/kolibri,lyw07/kolibri,lyw07/kolibri,mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,learningequality/kolibri,mrpau/kolibri,learningequality/kolibri,lyw07/kolibri,lyw07/kolibri,mrpau/kolibri |
4c0838439a32360f6b1e338fa07c429da9044e89 | recipes/netgen/bld.bat | recipes/netgen/bld.bat | mkdir build
cd build
REM TODO: can not find tkint.h -> disabling GUI for WIN
cmake .. -G "Ninja" ^
-DCMAKE_BUILD_TYPE="Release" ^
-DINSTALL_DIR_LAYOUT="Unix" ^
-DCMAKE_PREFIX_PATH:FILEPATH="%PREFIX%" ^
-DCMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^
-DNG_INSTALL_DIR_INCLUDE:FILEPATHE="%LIBRA... | mkdir build
cd build
REM TODO: can not find tkint.h -> disabling GUI for WIN
cmake .. -G "Ninja" ^
-DCMAKE_BUILD_TYPE="Release" ^
-DINSTALL_DIR_LAYOUT="Unix" ^
-DCMAKE_PREFIX_PATH:FILEPATH="%PREFIX%" ^
-DCMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^
-DNG_INSTALL_DIR_INCLUDE:FILEPATHE="%LIBRA... | Remove unnecessary cmake flag INSTALL_DIR | Remove unnecessary cmake flag INSTALL_DIR
| Batchfile | bsd-3-clause | basnijholt/staged-recipes,basnijholt/staged-recipes,guillochon/staged-recipes,isuruf/staged-recipes,scopatz/staged-recipes,barkls/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,mcs07/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,mcs07/staged-recipes,jochym/staged-... |
58a02bc0043e1c274ffc3ee672a92c2a17938ef6 | runtime/org.openmole.runtime.daemon/src/main/resources/run.bat | runtime/org.openmole.runtime.daemon/src/main/resources/run.bat | FOR /F "tokens=*" %%G IN ('DIR /B /AD /S org.*') DO RMDIR /S /Q %%G
java -ea -Dosgi.classloader.singleThreadLoads=true -XX:+UseCompressedOops -XX:+CMSClassUnloadingEnabled -XX:+UseParallelGC -Xmx92m -jar plugins\org.eclipse.equinox.launcher.jar %*
| FOR /F "tokens=*" %%G IN ('DIR /B /AD /S org.*') DO RMDIR /S /Q %%G
java -ea -Dosgi.classloader.singleThreadLoads=true -XX:+CMSClassUnloadingEnabled -XX:+UseParallelGC -Xmx92m -jar plugins\org.eclipse.equinox.launcher.jar %*
| Remove compressed pointer flag for now. | Remove compressed pointer flag for now.
| Batchfile | agpl-3.0 | openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole |
e38e72132206578ecf3ddaaa07ea3632e670f936 | ci/scripts/build-project-windows.bat | ci/scripts/build-project-windows.bat | SET "JAVA_HOME=C:\opt\jdk-8"
SET PATH=%PATH%;C:\Program Files\Git\usr\bin
cd git-repo
.\gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 build
| SET "JAVA_HOME=C:\opt\jdk-17"
SET PATH=%PATH%;C:\Program Files\Git\usr\bin
cd git-repo
.\gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 build
| Use Java 17 for Windows CI build | Use Java 17 for Windows CI build
See gh-28101
| Batchfile | apache-2.0 | wilkinsona/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,spring-projects/spring-boot,wilkinsona/spring-boot,michael-simons/spring-boot,chrylis/spring-boot,htynkn/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,scottfrederick/sp... |
9188f6e655de701dfa69fddcfa807313e9d3bcbf | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
@powershell -Command "java -cp '..\lib\*' %DEBUG_OPTS% \"-Daerobase.config.dir=%CONFIG%\" org.jboss.aerogear.unifiedpush.DBMaintenance"
GOTO End1
:No1
ECHO... | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
java -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End1
:No1
ECHO Mis... | Fix initdb under windows server 2016 | Fix initdb under windows server 2016
| Batchfile | apache-2.0 | aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server |
7e495caa4914fa88969d8873050fce1aeb4fff94 | scripts/skiabot-slave-start-on-boot.bat | scripts/skiabot-slave-start-on-boot.bat | cd C:\Users\chrome-bot
call gclient config https://skia.googlesource.com/buildbot.git
call gclient sync --force
cd buildbot
python scripts\launch_slaves.py | cd C:\Users\chrome-bot
call gclient config https://skia.googlesource.com/buildbot.git
call gclient sync --force -j1
cd buildbot
python scripts\launch_slaves.py | Add -j1 to windows launch script | Add -j1 to windows launch script
(SkipBuildbotRuns)
Review URL: https://codereview.chromium.org/23054003
git-svn-id: 32fc27f4dcfb6c0385cd9719852b95fe6680452d@10698 2bbb7eff-a529-9590-31e7-b0007b416f81
| Batchfile | bsd-3-clause | google/skia-buildbot,Tiger66639/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,Ti... |
7603776b63bf66cdbb7945538a8b771af56cf6a2 | conf/appveyor/run_with_env.cmd | conf/appveyor/run_with_env.cmd | :: Author: Lisandro Dalcin
:: Contact: dalcinl@gmail.com
:: Credits: Olivier Grisel and Kyle Kastner
@ECHO OFF
SET COMMAND_TO_RUN=%*
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
IF "%PYTHON_VERSION:~0,1%" == "2" SET WIN_SDK_VERSION="v7.0"
IF "%PYTHON_VERSION:~0,1%" == "3" SET WIN_SDK_VERSION="v7.1"
IF "... | :: Author: Lisandro Dalcin
:: Contact: dalcinl@gmail.com
:: Credits: Olivier Grisel and Kyle Kastner
@ECHO OFF
SET COMMAND_TO_RUN=%*
SET PYTHON_VERSION_MAJOR=%PYTHON_VERSION:~0,1%
SET PYTHON_VERSION_MINOR=%PYTHON_VERSION:~2,1%
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
IF %PYTHON_VERSION_MAJOR% == 2 S... | Fix build for Python 3.5 | AppVeyor: Fix build for Python 3.5
| Batchfile | bsd-2-clause | mpi4py/mpi4py,mpi4py/mpi4py,mpi4py/mpi4py |
f9da09de26e8f6324bb0db25b4ad85ce8882c483 | windows/nsis-installer/oq-console.bat | windows/nsis-installer/oq-console.bat | @echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
doskey oq=python.exe -m openquake.commands.__main__ $*
doskey oq-engine=python.exe -m openquake.commands.__main__ engine $*
echo OpenQuake environment loaded
echo T... | @echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7\Scripts;%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
doskey oq=python.exe -m openquake.commands.__main__ $*
doskey oq-engine=python.exe -m openquake.commands.__main__ engine $*
echo OpenQuake... | Add python2.7\Scripts to PATH on Win | Add python2.7\Scripts to PATH on Win
| Batchfile | agpl-3.0 | gem/oq-nsis,gem/oq-installers,gem/oq-installers |
8651701a7901b028c08608fb50b57110ec448c95 | BuildForPublication.cmd | BuildForPublication.cmd | @echo off
setlocal
call NightlyBuild.cmd
set PackageDir=%~dp0LocalPackages
call dnu restore dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx\project.json -f %PackageDir%
call dnu pack dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx\project.json --out %PackageDir% --configuration Release
| @echo off
setlocal
call NightlyBuild.cmd
set PackageDir=%~dp0LocalPackages
pushd %~dp0dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx
call dnu restore
call dnu pack --out %PackageDir% --configuration Release
popd | Fix BuildForPublishcation.cmd Apparently the paths in nuget.config are relative to the *current* directory... | Fix BuildForPublishcation.cmd
Apparently the paths in nuget.config are relative to the *current* directory...
| Batchfile | mit | Microsoft/xunit-performance,visia/xunit-performance,Microsoft/xunit-performance,ericeil/xunit-performance,pharring/xunit-performance |
ce87ad9bdb76b48857b21dfdb171d12c1871549a | cmake/cmake_visual_studio_2015_clang.bat | cmake/cmake_visual_studio_2015_clang.bat | @echo off
cmake -G "Visual Studio 14 2015 Win64" %"Set the generator to Visual Studio 2015 x64"% ^
-T "v140_clang_3_7" %"Set the compiler toolchain to Clang/C2"% ^
-H%~dp0\.. %"Set the source directory to the parent directory"% ^
-B%~dp0\..\_build_clang ... | @echo off
cmake -G "Visual Studio 14 2015 Win64" %"Set the generator to Visual Studio 2015 x64"% ^
-T "v140_clang_c2" %"Set the compiler toolchain to Clang/C2"% ^
-H%~dp0\.. %"Set the source directory to the parent directory"% ^
-B%~dp0\..\_build_clang ... | Update Clang/C2 batch file with new toolchain name | Update Clang/C2 batch file with new toolchain name
| Batchfile | mit | Qartar/qflags,Qartar/qflags |
366eb761328b2211064739317a90245e41c20e15 | tests/fsharp/typeProviders/helloWorldCSharp/build.bat | tests/fsharp/typeProviders/helloWorldCSharp/build.bat | rem @if "%_echo%"=="" echo off
setlocal
call %~d0%~p0\..\..\..\config.bat
if EXIST magic.dll del magic.dll
if errorlevel 1 goto :Error
"%FSC%" --out:magic.dll -a magic.fs --keyfile:magic.snk
if errorlevel 1 goto :Error
REM == If we are running this test on a lab machine, we may not be running from an elev cmd prom... | rem @if "%_echo%"=="" echo off
setlocal
call %~d0%~p0\..\..\..\config.bat
if EXIST magic.dll del magic.dll
if errorlevel 1 goto :Error
"%FSC%" --out:magic.dll -a magic.fs --keyfile:magic.snk
if errorlevel 1 goto :Error
REM == If we are running this test on a lab machine, we may not be running from an elev cmd prom... | Fix accidental incorrect quoting in test script (changeset 1235391) | Fix accidental incorrect quoting in test script (changeset 1235391)
| Batchfile | apache-2.0 | dsyme/FSharp.Compiler.Service,forki/FSharp.Compiler.Service,syeerzy/visualfsharp,bleis-tift/FSharp.Compiler.Service,syeerzy/visualfsharp,wk-j/fsharp,ncave/FSharp.Compiler.Service,dsyme/fsharp,eloraiby/fsharp,directhex/fsharp,dsyme/FSharp.Compiler.Service,yever/FSharp.Compiler.Service,Jand42/FSharp.Compiler.Service,fork... |
e1d2800c0fbd42f4261ea8fd571c3b4c80e038e4 | packaging/nuget/do_package.bat | packaging/nuget/do_package.bat | @echo off
pushd %~dp0
if not exist ..\..\nuget.exe (
powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe"
)
if not defined NUGET_VERSION (
echo NUGET_VERSION not defined, aborting...
popd
exit /b 1
)
if not defined API_KEY (
e... | @echo off
pushd %~dp0
del *.nupkg
if not exist ..\..\nuget.exe (
powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe"
)
if not defined NUGET_VERSION (
echo NUGET_VERSION not defined, aborting...
popd
exit /b 1
)
if not defined API... | Delete the nuget packages from the packaging directory BEFORE the script starts to avoid madness | Delete the nuget packages from the packaging directory BEFORE the script starts to avoid madness
| Batchfile | apache-2.0 | couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net |
0a53d224e57508bfe84fb2ad633048f473bc6469 | src/Main/PublishNugetPackage.cmd | src/Main/PublishNugetPackage.cmd | @echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.1.0.0.7.nupkg
pause | @echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.1.0.0.9.nupkg
pause | Update nuget publish cmd file for latest version. | Update nuget publish cmd file for latest version.
| Batchfile | mit | stickybun/RSSDP,Yortw/RSSDP,Yortw/RSSDP |
1432afefdbdb487303f6055ccf2a36aa12b858ab | Server/install_windows_service.cmd | Server/install_windows_service.cmd | rem Alter this if you need to install multiple instances.
@echo off
set SERVICENAME="Cuberite"
set CURRENTDIR=%CD%
sc create %SERVICENAME% binPath= "%CURRENTDIR%\Cuberite.exe -d" start= auto DisplayName= %SERVICENAME%
sc description %SERVICENAME% "Minecraft server instance"
| rem Alter this if you need to install multiple instances.
@echo off
set SERVICENAME="Cuberite"
set CURRENTDIR=%CD%
sc create %SERVICENAME% binPath= "%CURRENTDIR%\Cuberite.exe -d" start= auto DisplayName= "@%CURRENTDIR%\Cuberite.exe,-1"
sc description %SERVICENAME% "@%CURRENTDIR%\Cuberite.exe,-2"
| Use string redirection in Windows service | Use string redirection in Windows service
+ Localisation support
| Batchfile | apache-2.0 | mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer |
c4420e7690b540b9319624d38dd72d8234026adb | bin/test.bat | bin/test.bat | DEL c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe
bitsadmin.exe /transfer "DownloadStableCLI" https://s3.amazonaws.com/go-cli/builds/cf-windows-amd64.exe c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe
go get -u github.com/pivotal-cf-experimental/GATS/...
SE... | DEL c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe
bitsadmin.exe /transfer "DownloadStableCLI" https://s3.amazonaws.com/go-cli/builds/cf-windows-amd64.exe c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe
go get -u github.com/pivotal-cf-experimental/GATS/...
SE... | Add GATSPATH to beginning of PATH. | Add GATSPATH to beginning of PATH.
- Ensure that the correct cf version is being used.
| Batchfile | unknown | cloudfoundry/cli-acceptance-tests,cloudfoundry/GATS,cloudfoundry/GATS,cloudfoundry/cli-acceptance-tests,cloudfoundry/GATS,cloudfoundry/cli-acceptance-tests |
fe9a8f2988426339b78b3bda977f372afa383580 | src/xscontainer/data/configure_tls.cmd | src/xscontainer/data/configure_tls.cmd | @echo off
net session >nul 2>&1
if %errorLevel% NEQ 0 (
echo Please run this script with Administrator privileges
timeout 10 > NUL
EXIT /B 1
)
SET cdpath=%~dp0
echo Setting the system environment variable DOCKER_HOST
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_HOST ... | @echo off
net session >nul 2>&1
if %errorLevel% NEQ 0 (
echo Please run this script with Administrator privileges
timeout 10 > NUL
EXIT /B 1
)
SET cdpath=%~dp0
if not exist c:\ProgramData\docker\ (
echo Error: Could not find Docker in c:\ProgramData\docker\.
echo Please install Docker before running... | Check that Docker is installed on Windows | Check that Docker is installed on Windows
Signed-off-by: Robert Breker <bfcd7039ca4b92386f0756a1d5e67ea4ff23cfe0@citrix.com>
| Batchfile | bsd-2-clause | xenserver/xscontainer,xenserver/xscontainer,robertbreker/xscontainer,robertbreker/xscontainer |
679ff0874fb32e957bb519381c3b26102558a614 | mb-env.bat | mb-env.bat | :: Establish an environment for Mindbender applications
@echo off
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER... | :: Establish an environment for Mindbender applications
@echo off
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER... | Set configuration to the one bundled | Set configuration to the one bundled
| Batchfile | mit | mottosso/mindbender-setup,mottosso/mindbender-setup,mottosso/mindbender-setup |
c38ffeceb1aa227c48559919fb971680fe1f1cd8 | make_w64.cmd | make_w64.cmd | @ECHO OFF
set target=amd64
set MSVC=%USERPROFILE%\cmsc\msvc\bin\%target%
set libs=/LIBPATH:"%MSVC%\..\..\lib\%target%"
set include=/I"%MSVC%\..\..\include\crt"
set src=%CD%
set output=/OUT:zs.exe
set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TC
set files=%src%\main.c %src%\errors.c %src%\flash_io.c %src%\zs_data.c
%M... | @ECHO OFF
set target=amd64
set MSVC=%USERPROFILE%\cmsc\msvc\bin\%target%
set libs=/LIBPATH:"%MSVC%\..\..\lib\%target%"
set include=/I"%MSVC%\..\..\include\crt"
set src=%CD%
set output=/OUT:zs.exe
REM set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TP
set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TC
set files=%src%\main.... | Test with /TP instead of /TC to check for C++ warnings. | Test with /TP instead of /TC to check for C++ warnings.
| Batchfile | cc0-1.0 | cxd4/zs-flash,cxd4/zs-flash |
aeb58f219b7e988c28d888ad68d425f593559111 | extras/scripts/postsubmit.bat | extras/scripts/postsubmit.bat |
echo on
echo Postsubmit.bat started.
if exist %VCVARSALL_SCRIPT% (
echo Running VCVARSALL script: %VCVARSALL_SCRIPT%
CALL %VCVARSALL_SCRIPT% amd64 || exit /b %errorlevel%
)
echo Creating build directory.
mkdir C:\Fruit\build-%CONFIGURATION%
cd C:\Fruit\build-%CONFIGURATION%
echo Running CMake.
%CMAKE_PATH%\c... |
echo on
echo Postsubmit.bat started.
if exist %VCVARSALL_SCRIPT% (
echo Running VCVARSALL script: %VCVARSALL_SCRIPT%
CALL %VCVARSALL_SCRIPT% amd64 || exit /b %errorlevel%
)
echo Creating build directory.
mkdir C:\Fruit\build-%CONFIGURATION%
cd C:\Fruit\build-%CONFIGURATION%
rem TODO: Remove the following 2 co... | Add some more debugging prints in the AppVeyor test script, to investigate an error when running CMake. | Add some more debugging prints in the AppVeyor test script, to investigate an error when running CMake.
| Batchfile | apache-2.0 | google/fruit,google/fruit,google/fruit |
48aa07f9378845a0c8ba6882054296b4a8a7bcb4 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/3bf82c59679bd6539651cf5751246f34e6fd6a56
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/89ed632cfb0154130af7cc555d4644ad33122ab9
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update new version of kuduscript where the generator wont generate iisnode.yml file | Update new version of kuduscript where the generator wont generate iisnode.yml file
| Batchfile | apache-2.0 | barnyp/kudu,duncansmart/kudu,duncansmart/kudu,YOTOV-LIMITED/kudu,puneet-gupta/kudu,shibayan/kudu,barnyp/kudu,YOTOV-LIMITED/kudu,kali786516/kudu,YOTOV-LIMITED/kudu,projectkudu/kudu,duncansmart/kudu,mauricionr/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,kali786516/kudu,shrimpy/kudu,barnyp/kudu,badescuga/kudu,shanselman/kud... |
4ce097d1b944609f3e5896622ea1f89fb1b7a78f | recipes/ndcube/bld.bat | recipes/ndcube/bld.bat | "%PYTHON%" setup.py install
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
| "%PYTHON%" setup.py install --offline --no-git --single-version-externally-managed --record record.txt
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
| Change install command in windows script | Change install command in windows script
| Batchfile | bsd-3-clause | basnijholt/staged-recipes,jjhelmus/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,glemaitre/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recip... |
20af210c99a629238623f70626e6f8f00d3cbee1 | netcore/Build.cmd | netcore/Build.cmd | echo off
set BuildMode=Debug
if not {%1} == {} (
set BuildMode=%1
)
set OriginalPath=%cd%
set TestPath=%~dp0..\test
"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTest\DMLibTest.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL
"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTest... |
set BuildMode=Debug
if not {%1} == {} (
set BuildMode=%1
)
set OriginalPath=%cd%
set TestPath=%~dp0..\test
"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTest\DMLibTest.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL
"%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTestCodeGen\D... | Change build script after moving DMLib to VS2017 | Change build script after moving DMLib to VS2017
| Batchfile | mit | Azure/azure-storage-net-data-movement |
4a3ce61dff91fefd7057a8f34db37790c79683dc | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tool... | @echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tool... | Make sure exit code is 0 when successful. | Make sure exit code is 0 when successful.
| Batchfile | apache-2.0 | chrisrpatterson/kudu,dev-enthusiast/kudu,EricSten-MSFT/kudu,projectkudu/kudu,barnyp/kudu,oliver-feng/kudu,shibayan/kudu,MavenRain/kudu,YOTOV-LIMITED/kudu,shibayan/kudu,dev-enthusiast/kudu,shrimpy/kudu,shibayan/kudu,bbauya/kudu,puneet-gupta/kudu,dev-enthusiast/kudu,badescuga/kudu,WeAreMammoth/kudu-obsolete,projectkudu/k... |
f0317364c167c9c4049c1d3666dc06674e36b1be | .buildkite/sign_windows_installer.bat | .buildkite/sign_windows_installer.bat | @echo off
rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent.
rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact.
rem To sign the Windows installer set the `SIGN_WINDOWS_INSTALLER=true` environme... | @echo off
rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable.
rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent.
rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline art... | Add a singed name at the filename of the installer, after it was successfully signed. | Add a singed name at the filename of the installer, after it was successfully signed.
| Batchfile | mit | mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,lyw07/kolibri,mrpau/kolibri,mrpau/kolibri,lyw07/kolibri,indirectlylit/kolibri,mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,lyw07/kolibri,learningequality/kolibri,lyw07/kolibri,indirectlylit/kolibri,learningequality/kolibri |
fe63a2641cd035706f691ad07594cb42a94bf5bc | ci/cli/tasks/units-windows.bat | ci/cli/tasks/units-windows.bat | SET GOPATH=%CD%\gopath
SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH%
cd %GOPATH%\src\code.cloudfoundry.org\cli
powershell -command set-executionpolicy remotesigned
go version
go get -u github.com/onsi/ginkgo/ginkgo
ginkgo version
ginkgo -r -race -randomizeAllSpecs -randomizeSuites -skipPackage ... | SET GOPATH=%CD%\gopath
SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH%
cd %GOPATH%\src\code.cloudfoundry.org\cli
powershell -command set-executionpolicy remotesigned
go version
go get -u github.com/onsi/ginkgo/ginkgo
ginkgo version
ginkgo -r -randomizeAllSpecs -randomizeSuites -skipPackage integr... | Remove -race from windows units temporarily | Remove -race from windows units temporarily
Because of https://github.com/golang/go/issues/27089, passing "-race" to
ginkgo causes the windows build to fail. We are simply removing this
flag until the golang issue is resolved. (Units on other operating
systems still check for race conditions.)
[#160911621]
Signed-of... | Batchfile | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
fc0b8526284d5a775e8cd539919464d87c6e1645 | packer/vagrant/scripts/windows/msys2.bat | packer/vagrant/scripts/windows/msys2.bat | if not exist "C:\Windows\Temp\msys2.exe" (
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe', 'C:\Windows\Temp\msys2.exe')" <NUL
)
start /wait C:\Windows\Temp\msys2.exe --script A:\msys2-install.qs
start /wait C:\msys64\usr\bin\bash.exe... | if not exist "C:\Windows\Temp\msys2.exe" (
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe', 'C:\Windows\Temp\msys2.exe')" <NUL
)
start /wait C:\Windows\Temp\msys2.exe --script A:\msys2-install.qs
start /wait C:\msys64\usr\bin\bash.exe... | Install the base-devel meta package on setup | Install the base-devel meta package on setup
| Batchfile | mit | chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/va... |
195979fdc8e5a0f4ebfe42262e6f77803a22abc1 | scripts/presetup-win.cmd | scripts/presetup-win.cmd | REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco install virtualbox -y
REM Killing the default adapter and ... | REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco upgrade virtualbox -y
REM Killing the default adapter and ... | Use upgrade command with choco on Windows | Use upgrade command with choco on Windows
`choco upgrade` will do `install` if the package is missing. | Batchfile | mit | blinkreaction/boot2docker-vagrant |
5a5a381ceeca8b886d59592d05ec2eead2af076d | src/condor_tests/job_filexfer_output-withvacate_van.cmd | src/condor_tests/job_filexfer_output-withvacate_van.cmd | universe = vanilla
executable = ./x_job_filexfer_testjob.pl
log = job_filexfer_output-withvacate_van.log
output = job_filexfer_output-withvacate_van.out
error = job_filexfer_output-withvacate_van.err
should_transfer_files = YES
when_to_transfer_output = ON_EXIT_OR_EVICT
transfer_output_files = submit_filetrans_output... | universe = vanilla
executable = ./x_job_filexfer_testjob.pl
log = job_filexfer_output-withvacate_van.log
output = job_filexfer_output-withvacate_van.out
error = job_filexfer_output-withvacate_van.err
should_transfer_files = YES
when_to_transfer_output = ON_EXIT_OR_EVICT
transfer_output_files = submit_filetrans_output... | Remove race condition on vacate in test by using -forever option. Fix parallel test behaviour. | Remove race condition on vacate in test by using -forever option.
Fix parallel test behaviour.
| Batchfile | apache-2.0 | mambelli/osg-bosco-marco,djw8605/condor,htcondor/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,djw8605/condor,clalancette/condor-dcloud,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,djw8605/condor,djw8605/htcondor,neurodebian/htcondor,mambelli/osg-bosco-marco,clalancette/condor-dcloud,neuro... |
968bd73292eb8a28299619ed036c9e1d3d717d59 | contrib/easywinbuilder/6_gather_dlls.bat | contrib/easywinbuilder/6_gather_dlls.bat | @call set_vars.bat
copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\
copy %MINGW%\bin\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy %MI... | @call set_vars.bat
copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\
copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy %QTPAT... | Fix invalid DLL paths when deploying. | Fix invalid DLL paths when deploying.
| Batchfile | mit | tomasbrod/Gridcoin-Research,tomasbrod/Gridcoin-Research,tomasbrod/Gridcoin-Research,theMarix/Gridcoin-Research,gridcoin/Gridcoin-Research,theMarix/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,caraka/gridcoinresearch,tomasbrod/Gridcoin-Research,theMarix/Gridcoin-Research,TheCharlatan/Gridcoin-Research,Lederstrumpf/G... |
f0804a650426c7bfc8f845451f17be002a9a35f2 | Utilities/Dashboards/VesselView-errai.bat | Utilities/Dashboards/VesselView-errai.bat | @echo off
if exist "C:\Work\D\Vvmn\*" goto deleteDir
echo No existing build directory
goto updateScripts
:deleteDir
echo Delete directory
pushd "C:\Work\D\Vvmn"
for /d %%d in (*.*) do rmdir /s /q "%%d"
del /q *.*
popd
:updateScripts
cd C:\Work\VesselView\Dashboards\VesselView
"C:\Program Files (x86)\Git\bin\git" fet... | @echo off
if exist "C:\Work\D\Vvmn\*" goto deleteDir
echo No existing build directory
goto updateScripts
:deleteDir
echo Delete directory
pushd "C:\Work\D\Vvmn"
for /d %%d in (*.*) do rmdir /s /q "%%d"
del /q *.*
popd
:updateScripts
cd C:\Work\VesselView\Dashboards\VesselView
"C:\Program Files (x86)\Git\bin\git" fet... | Fix errai dashboard script reset to master | Fix errai dashboard script reset to master
See issue #45
| Batchfile | apache-2.0 | matthieuheitz/VesselView,KitwareMedical/VesselView,agirault/VesselView,sumedhasingla/VesselView,agirault/VesselView,sumedhasingla/VesselView,KitwareMedical/VesselView,sumedhasingla/VesselView,matthieuheitz/VesselView,agirault/VesselView,KitwareMedical/VesselView,matthieuheitz/VesselView |
c12c22b3609dcff2d70a72ac52066af0d02c60a7 | util/cron/test-windows-default-examples.bat | util/cron/test-windows-default-examples.bat | @ECHO OFF
REM Test default configuration against examples on windows.
REM WORKSPACE is always set inside our testing environment. If this is run
REM outside that environment, the caller is responsible for setting it.
IF "%WORKSPACE%"=="" GOTO ErrExit
REM NOTE: This is pretty messy, but it is the only way I could figu... | @ECHO OFF
REM Test default configuration against examples on windows.
REM WORKSPACE is always set inside our testing environment. If this is run
REM outside that environment, the caller is responsible for setting it.
IF "%WORKSPACE%"=="" GOTO ErrExit
REM NOTE: This is pretty messy, but it is the only way I could figu... | Use PWD instead of WORKSPACE in windows batch script. | Use PWD instead of WORKSPACE in windows batch script.
WORKSPACE use windows file path separators, which does not translate well to
the cygwin/bash environment. PWD uses the cygwin/bash file separator _and_ it
uses the correct file system mapping.
git-svn-id: 88467cb1fb04b8a755be7e1ee1026be4190196ef@23856 3a8e244f-b0f... | Batchfile | apache-2.0 | CoryMcCartan/chapel,hildeth/chapel,CoryMcCartan/chapel,CoryMcCartan/chapel,CoryMcCartan/chapel,hildeth/chapel,chizarlicious/chapel,chizarlicious/chapel,hildeth/chapel,hildeth/chapel,chizarlicious/chapel,chizarlicious/chapel,hildeth/chapel,sungeunchoi/chapel,sungeunchoi/chapel,chizarlicious/chapel,CoryMcCartan/chapel,ch... |
a0604e3febb453742a9e34ed1e72f104e3066846 | bin/doom.cmd | bin/doom.cmd | :: Forward the ./doom script to Emacs
@ECHO OFF
PUSHD "%~dp0" >NUL
IF "%1"=="run" (
SHIFT
emacs -Q %* -l ..\init.el -f "doom|run-all-startup-hooks"
) ELSE (
emacs --quick --script .\doom -- %*
)
POPD >NUL
ECHO ON | :: Forward the ./doom script to Emacs
@ECHO OFF
PUSHD "%~dp0" >NUL
IF "%1"=="run" (
SHIFT
start runemacs -Q %* -l ..\init.el -f "doom|run-all-startup-hooks"
) ELSE (
emacs --quick --script .\doom -- %*
)
POPD >NUL
ECHO ON
| Tweak the command used for the "run" argument | Tweak the command used for the "run" argument
- Using "start" will allow the batch script to return immediately,
rather than waiting for the command to finish.
- Using "runemacs" (instead of plain "emacs") will hide the console
window that is displayed while Emacs is running
| Batchfile | mit | UndeadKernel/emacs_doom,hlissner/.emacs.d,hlissner/.emacs.d,UndeadKernel/emacs_doom,hlissner/doom-emacs,hlissner/.emacs.d,hlissner/.emacs.d,hlissner/doom-emacs,hlissner/.emacs.d,UndeadKernel/emacs_doom,UndeadKernel/emacs_doom,UndeadKernel/emacs_doom,hlissner/.emacs.d,hlissner/doom-emacs,hlissner/doom-emacs,hlissner/doo... |
7b91dad62f5a400f9a4429ab80272b383af5fa2f | TestDPRO.cmd | TestDPRO.cmd | @ECHO OFF
ECHO Running regression tests
START /Wait Dolphin7 DPRO.img7 -f RegressionTestsRun.st -q
IF %ERRORLEVEL% NEQ 0 (
TYPE DPRO.testlog
ECHO Tests failed=%ERRORLEVEL%
EXIT -1
)
TYPE DPRO.testlog
ECHO Finished regression tests
| @ECHO OFF
ECHO Running regression tests
START /Wait Dolphin7 DPRO.img7 -f RegressionTestsRun.st -q
FINDSTR /L /C:" 0 errors" DPRO.testlog
IF %ERRORLEVEL% NEQ 0 (
TYPE DPRO.testlog
ECHO Tests failed
EXIT -1
)
ECHO Finished regression tests | Use contents of .lestlog file to determine success or failure rather than relying on exit code from Dolphin. The move to VS2015 seems to have exacerbated a situation where the return code from SessionManager>>quit: may not make it back to the shell. For the the time being we'll change the way we detect success or failu... | Use contents of .lestlog file to determine success or failure rather than relying on exit code from Dolphin.
The move to VS2015 seems to have exacerbated a situation where the return code from SessionManager>>quit: may not make it back to the shell. For the the time being we'll change the way we detect success or failu... | Batchfile | mit | jgfoster/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,ScottyPotty1/ScottyPotty1-Main-Repository,objectarts/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,blairmcg/Dolphin,jgfoster/Dolphin,blairmcg/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,objectarts/Dolphin,shoshanatech... |
b44f28815f6f84e1edd9a989bd99dff5e5112563 | prestore.cmd | prestore.cmd | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i
if "%nuget_path%"=="" goto :nonuget
set packages_path=%~dp0packages
if exist "%packages_path%\repositories.config" (
for /f "usebackq delims=" %%p in (`PowerShell -C "Get-Content '%packages_path%\repositories.config' | Select-Xml //rep... | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i
if "%nuget_path%"=="" goto :nonuget
set packages_path=%~dp0packages
if exist "%packages_path%\repositories.config" (
for /f "usebackq delims=" %%p in (`PowerShell -C "[xml](Get-Content '%packages_path%\repositories.config') | Select-Xm... | Package restore script fixes (possibly some due to PowerShell 4 compatibility issues) | Package restore script fixes (possibly some due to PowerShell 4 compatibility issues)
| Batchfile | apache-2.0 | Jeff-Lewis/elmah,Jeff-Lewis/elmah |
e0acf596b44c73f3437a1050f9b4c82b02bb41e3 | redpen-cli/bin/redpen.bat | redpen-cli/bin/redpen.bat | @echo off
SETLOCAL
if NOT DEFINED JAVA_HOME goto err
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set REDPEN_HOME=%%~dpfI
set REDPEN_CLASSPATH=%REDPEN_HOME%/conf;%REDPEN_HOME%/lib/*
set JAVA_OPTS=%JAVA_OPTS%
"%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%REDPEN_CLASSPATH%" cc.redpen.Main %*... | @echo off
SETLOCAL
if NOT DEFINED JAVA_HOME goto err
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set REDPEN_HOME=%%~dpfI
set REDPEN_CLASSPATH=%REDPEN_HOME%/conf;%REDPEN_HOME%/lib/*
set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8
"%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%REDPEN_CLASSPA... | Fix character corruption in Windows | Fix character corruption in Windows
| Batchfile | apache-2.0 | gerryhocks/redpen,gerryhocks/redpen,tatamiya3/redpen,kenhys/redpen,redpen-cc/redpen,redpen-cc/redpen,tatamiya3/redpen,recruit-tech/redpen,recruit-tech/redpen,gerryhocks/redpen,kenhys/redpen,tatamiya3/redpen,redpen-cc/redpen,tatamiya3/redpen,redpen-cc/redpen,kenhys/redpen,kenhys/redpen,gerryhocks/redpen,recruit-tech/red... |
89653d01646681ff033e95e6d62b8f0585ae7ac6 | modules/framework/scripts/executecommand.bat | modules/framework/scripts/executecommand.bat | @echo off
rem check that JAVA_HOME and LCF_HOME are set
if not exist "%JAVA_HOME%\bin\java.exe" goto nojavahome
if not exist "%LCF_HOME%\properties.ini" goto nolcfhome
rem save existing path here
set OLDDIR=%CD%
cd "%LCF_HOME%\processes"
set CLASSPATH=.
for %%f in (jar/*) do call script\setclasspath.bat %%f
set JAVADEF... | @echo off
rem check that JAVA_HOME and LCF_HOME are set
if not exist "%JAVA_HOME%\bin\java.exe" goto nojavahome
if not exist "%LCF_HOME%\properties.ini" goto nolcfhome
rem save existing path here
set OLDDIR=%CD%
cd "%LCF_HOME%\processes"
set CLASSPATH=.
for %%f in (jar/*) do call script\setclasspath.bat %%f
set JAVADEF... | Use %* instead of enumerated arguments when calling java | Use %* instead of enumerated arguments when calling java
git-svn-id: 0503cfb7d358eaa9bd718f348f448f10022ea703@939729 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | gladyscarrizales/manifoldcf,cogfor/mcf-cogfor,kishorejangid/manifoldcf,kishorejangid/manifoldcf,kishorejangid/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,cogfor/mcf-cogfor,kishorejangid/manifoldcf,apache/manifoldcf,kishorejangid/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,apache/manifoldcf,gla... |
a941bcfa3f93c3e7188fdac65e23777fd816d547 | makedocs.bat | makedocs.bat | @echo off
REM docs\build_autodoc_files.py
sphinx-build -b html doc_src pywinauto\docs
REM c:\.temp\pudge\pudge\cli --documents doc_source\index.rst,doc_source\controls_overview.rst,doc_source\howto.rst,doc_source\getting_started.rst,history.txt,license.txt,todo.txt --title pywinauto -v -d website -m pywina... | @echo off
doc_src\build_autodoc_files.py
sphinx-build -b html doc_src pywinauto\docs
REM c:\.temp\pudge\pudge\cli --documents doc_source\index.rst,doc_source\controls_overview.rst,doc_source\howto.rst,doc_source\getting_started.rst,history.txt,license.txt,todo.txt --title pywinauto -v -d website -m pywinau... | Fix the path to build_autodoc_files.py and call it by default everytime (it is safe as it does not re-generate files which already exist) | Fix the path to build_autodoc_files.py and call it by default everytime (it is safe as it does not re-generate files which already exist)
| Batchfile | bsd-3-clause | mjakop/pywinauto,ohio813/pywinauto,ohio813/pywinauto,prasen-ftech/pywinauto,nameoffnv/pywinauto,ldhwin/pywinauto,cessor/pywinauto,pjquirk/pjquirk-dotnetnames,pywinauto/pywinauto,manojklm/pywinauto-x64,nameoffnv/pywinauto,moden-py/pywinauto,moden-py/pywinauto,mindw/pywinauto,LogicalKnight/pywinauto,prasen-ftech/pywinaut... |
a69c1de9eadd67021af10966de7d5fb576b6b66e | recipe/bld.bat | recipe/bld.bat | set FFMPEG_FN=ffmpeg-%PKG_VERSION%-win%ARCH%
curl -L -O "https://ffmpeg.zeranoe.com/builds/win%ARCH%/dev/%FFMPEG_FN%-dev.7z"
7za x %SRC_DIR%\%FFMPEG_FN%-shared.7z -o%SRC_DIR%
7za x %FFMPEG_FN%-dev.7z -o%SRC_DIR%
copy %SRC_DIR%\%FFMPEG_FN%-shared\bin %LIBRARY_BIN%
copy %SRC_DIR%\%FFMPEG_FN%-dev\include %LIBRARY_INC%
... | set FFMPEG_FN=ffmpeg-%PKG_VERSION%-win%ARCH%
curl -L -O "https://ffmpeg.zeranoe.com/builds/win%ARCH%/dev/%FFMPEG_FN%-dev.7z"
7za x %SRC_DIR%\%FFMPEG_FN%-shared.7z -o%SRC_DIR%
7za x %FFMPEG_FN%-dev.7z -o%SRC_DIR%
robocopy %SRC_DIR%\%FFMPEG_FN%-shared\bin\ %LIBRARY_BIN%\ *.* /E
if %ERRORLEVEL% GEQ 8 exit 1
robocopy %... | Use robocopy to copy subdirs too | Use robocopy to copy subdirs too | Batchfile | bsd-3-clause | loopbio/ffmpeg-feedstock |
793bcb36ce278dbead18c072a34fb35d962a24ca | winlogbeat/make.bat | winlogbeat/make.bat | @echo off
REM
REM Batch script to build and test on Windows. You can use this in conjunction
REM with the Vagrant machine.
REM
echo Building
go build
if %errorlevel% neq 0 exit /b %errorlevel%
echo Testing
go test ./...
if %errorlevel% neq 0 exit /b %errorlevel%
echo System Testing
go test -c -cover... | @echo off
REM
REM Batch script to build and test on Windows. You can use this in conjunction
REM with the Vagrant machine.
REM
echo Building
go build
if %errorlevel% neq 0 exit /b %errorlevel%
echo Testing
go test ./...
if %errorlevel% neq 0 exit /b %errorlevel%
echo System Testing
go test -c -covermode=atomic -cov... | Normalize all the line endings | Normalize all the line endings
| Batchfile | mit | yapdns/yapdnsbeat,yapdns/yapdnsbeat |
8dc2469c663ca2d66bc3d1b1d9789d71e737e629 | reports_manager/report_manager_database/action_functions/test/test_action_enter_edit_folders.bat | reports_manager/report_manager_database/action_functions/test/test_action_enter_edit_folders.bat |
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f ..\action_enter_edit_folders.sql 1> test_action_enter_edit_folders.log 2>&1
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f test_action_enter_e... | REM install db
call C:\funda_components\reports_manager\report_manager_database\reports_manager_test_db\install_reports_manager_test_db.bat
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f ..\action_enter_edit_folders.sql 1> test_action_enter_edit_folders.l... | Add complete db installation before tests | Add complete db installation before tests
| Batchfile | apache-2.0 | james-cantrill/funda_components,james-cantrill/funda_components |
78f77172618740fee1d9ba37bc55c9ef5d58b2e1 | Tools/Trace/UsbDkTrace.bat | Tools/Trace/UsbDkTrace.bat | @echo off
traceview.exe -start UsbDk -rt -flag 0xFF -level 6 -ft 1 -pdb UsbDk.pdb -guid UsbDk.ctl
mkdir WPP
start traceview.exe -process -rt UsbDk -display -ods -o WPP\\UsbDk.txt -pdb UsbDk.pdb -guid UsbDk.ctl
start dbgview.exe
pause
traceview.exe -stop UsbDk
| @echo off
traceview.exe -start UsbDk -rt -flag 0x7FFFFFFF -level 6 -ft 1 -pdb UsbDk.pdb -guid UsbDk.ctl
mkdir WPP
start traceview.exe -process -rt UsbDk -display -ods -o WPP\\UsbDk.txt -pdb UsbDk.pdb -guid UsbDk.ctl
start dbgview.exe
pause
traceview.exe -stop UsbDk
| Enable all trace flags by default | Trace: Enable all trace flags by default
Signed-off-by: Dmitry Fleytman <f50f56ffad4b379c2a89812e98b14900ef87e9ea@redhat.com>
| Batchfile | apache-2.0 | SPICE/win32-usbdk,daynix/UsbDk,daynix/UsbDk,SPICE/win32-usbdk |
f8a4294ce793272b61ac31ed390d1489f27201de | recipes/ann/bld.bat | recipes/ann/bld.bat | mkdir -p build-cmake
cd build-cmake
cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_BUILD_TYPE=Release ..
if errorlevel 1 exit 1
nmake
if errorlevel 1 exit 1
nmake install
if errorlevel 1 exit 1
MOVE %LIBRARY_LIB%\ann.dll %LIBRARY_BIN%
| mkdir -p build-cmake
cd build-cmake
cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_BUILD_TYPE=Release -DANN_NO_RANDOM ..
if errorlevel 1 exit 1
nmake
if errorlevel 1 exit 1
nmake install
if errorlevel 1 exit 1
MOVE %LIBRARY_LIB%\ann.dll %LIBRARY_BIN%
| Add flag specifying that random/srandom are not available on windows | Add flag specifying that random/srandom are not available on windows
| Batchfile | bsd-3-clause | stuertz/staged-recipes,birdsarah/staged-recipes,Juanlu001/staged-recipes,conda-forge/staged-recipes,asmeurer/staged-recipes,isuruf/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,birdsarah/staged-recipes,synapticarbors/staged-recipes,hadim/staged-recipes,johanneskoester/sta... |
14f2ac86ec6ec05f74c8757f31e8a40a891acce9 | tools/windows/sign_msi.bat | tools/windows/sign_msi.bat | @echo off
set DIST_DIR=dist
set CERTIFICATE_PATH=%HOMEPATH%\certificates\nuxeo.com.pfx
set MSI_PROGRAM_NAME="Nuxeo Drive"
set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll
set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL%
set VERIFY_CMD=signtool verify /v ... | @echo off
set DIST_DIR=dist
set CERTIFICATE_PATH=%USERPROFILE%\certificates\nuxeo.com.pfx
set MSI_PROGRAM_NAME="Nuxeo Drive"
set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll
set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL%
set VERIFY_CMD=signtool verify ... | Use C:\Users\nuxeo instead of \Users\nuxeo in msi signing batch script (not set by Jenkins) | NXP-12981: Use C:\Users\nuxeo instead of \Users\nuxeo in msi signing batch script (not set by Jenkins)
| Batchfile | lgpl-2.1 | arameshkumar/base-nuxeo-drive,IsaacYangSLA/nuxeo-drive,ssdi-drive/nuxeo-drive,arameshkumar/base-nuxeo-drive,loopingz/nuxeo-drive,arameshkumar/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,arameshkumar/nuxeo-drive,IsaacYangSLA/nuxeo-drive,rsoumyassdi/nuxeo-drive,DirkHoffmann/nuxeo-drive,IsaacYangSLA... |
15b23c8106cf887ba8fa72d6b6357472830f43a4 | makebuild.bat | makebuild.bat | @rem Makes a build of the viewer
@rem You should have a directory ..\viewerbuilddlls which has release versions of
@rem all dependency dlls, including gtkmm & the Visual Studio 9 runtime
@echo off
rmdir build /S /Q
md build
xcopy bin\*.* build /S /C
del build\data\configuration\*.xml
rmdir build\testing /S /Q... | @rem Makes a build of the viewer
@rem You should have a directory ..\viewerbuilddlls which has release versions of
@rem all dependency dlls, including gtkmm & the Visual Studio 9 runtime
@echo off
rmdir build /S /Q
md build
xcopy bin\*.* build /S /C
del build\data\configuration\*.xml
rmdir build\testing /S /Q... | Delete OpenAL module from build from now on, because it's not yet used. | Delete OpenAL module from build from now on, because it's not yet used.
git-svn-id: 65dd0ccd495961f396d5302e5521154b071f0302@918 5b2332b8-efa3-11de-8684-7d64432d61a3
| Batchfile | apache-2.0 | jesterKing/naali,jesterKing/naali,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,antont/tundra,BogusCurry/tundra,antont/tundra,pharos3d/tundra,AlphaStaxLLC/tundra,antont/tundra,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,pharos3d/tundra,BogusCurry/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,antont/tun... |
07d4b98443c7ff88e18817454758932e17dfdf63 | buildscript/modules/collectdebugsymbols.cmd | buildscript/modules/collectdebugsymbols.cmd | @echo Copying debug information...
@IF %toolchain%==msvc ROBOCOPY "%devroot%\mesa\build\%toolchain%-%abi%" "%devroot%\%projectname%\debugsymbols\%abi%" *.pdb /E
@IF NOT %toolchain%==msvc IF EXIST "%msysloc%\%LMSYSTEM%\bin\strip.exe" IF EXIST "%msysloc%\%LMSYSTEM%\bin\objcopy.exe" for /f delims^=^ eol^= %%a in ('dir /b ... | @IF %toolchain%==msvc ROBOCOPY "%devroot%\mesa\build\%toolchain%-%abi%" "%devroot%\%projectname%\debugsymbols\%abi%" *.pdb /E
@IF NOT %toolchain%==msvc IF EXIST "%msysloc%\%LMSYSTEM%\bin\strip.exe" IF EXIST "%msysloc%\%LMSYSTEM%\bin\objcopy.exe" for /f delims^=^ eol^= %%a in ('dir /b "%devroot%\%projectname%\bin\%abi%\... | Make symbol extraction more verbose so progress can be observed | MinGW: Make symbol extraction more verbose so progress can be observed
| Batchfile | mit | pal1000/mesa-dist-win,pal1000/mesa-dist-win |
f1e98fce4e8e961646b56138ebb5f69a9557ac2e | scripts/sonarqube-scan.cmd | scripts/sonarqube-scan.cmd | mvn clean jacoco:prepare-agent verify jacoco:report -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| mvn clean jacoco:prepare-agent verify jacoco:report sonar:sonar -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| Add missing `sonar:sonar` for windows script | Add missing `sonar:sonar` for windows script | Batchfile | apache-2.0 | excella-core/excella-trans |
77f368a443d34f6b3613c072902abbe8a43a600e | Test/test-ipy-tc.cmd | Test/test-ipy-tc.cmd | @echo off
setlocal
set _test_root=%DLR_ROOT%\Test
set _runner=%_test_root%\TestRunner\TestRunner\bin\Debug\TestRunner.exe
call :build_runner
"%_runner%" "%_test_root%\IronPython.tests" /verbose /threads:1 /binpath:"%DLR_BIN%" /nunitoutput:"%_test_root%\TestResult.xml" %*
endlocal
goto:eof
:build_runner
%windir%\M... | @echo off
setlocal
if "%DLR_BIN%"=="" (
echo "You must set DLR_BIN before running this command"
exit /b -1
)
if "%DLR_ROOT%"=="" (
echo "You must set DLR_ROOT before running this command"
exit /b -1
)
set _test_root=%DLR_ROOT%\Test
set _config=%CONFIGURATION%
if "%_config%"=="" (
set _config=Debug
)
set ... | Make test runner use the correct configuration | Make test runner use the correct configuration
| Batchfile | apache-2.0 | slozier/ironpython2,slozier/ironpython2,slozier/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,slozier/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,slozier/ironpython2,slozier/ironpython2,slozier/ironpython... |
07599011c82c9e9b2345874402fd1f1e68c1ff24 | build.cmd | build.cmd | @echo off
setlocal
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
:: Check prerequisites
set _msbuildexe="%ProgramFiles(x86)%\... | @echo off
setlocal
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
:: Check prerequisites
set _msbuildexe="%ProgramFiles(x86)%\... | Replace fwlink with direct link to contributor's guide. | Replace fwlink with direct link to contributor's guide.
| Batchfile | mit | ericstj/buildtools,maririos/buildtools,weshaggard/buildtools,mmitche/buildtools,nguerrera/buildtools,JeremyKuhne/buildtools,crummel/dotnet_buildtools,maririos/buildtools,ericstj/buildtools,weshaggard/buildtools,mmitche/buildtools,jthelin/dotnet-buildtools,maririos/buildtools,ianhays/buildtools,alexperovich/buildtools,n... |
1e55e5173c467c9106b697620b1939676ed2806c | build.cmd | build.cmd | @echo off
pushd %~dp0
setlocal
if exist bin goto build
mkdir bin
:Build
set MSBuild="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MsBuild.exe"
if not exist %MSBuild% @set MSBuild="%ProgramFiles%\MSBuild\12.0\Bin\MsBuild.exe"
if not exist %MSBuild% @set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
if... | @echo off
pushd %~dp0
setlocal
if exist bin goto build
mkdir bin
:Build
REM Find the most recent 32bit MSBuild.exe on the system. If v12.0 (installed with VS2013) does not exist, fall back to
REM v4.0. Also handle x86 operating systems, where %ProgramFiles(x86)% is not defined. Always quote the %MSBuild% value
REM w... | Add comment for %MSBuild% setting - CR follow-up | Add comment for %MSBuild% setting
- CR follow-up
| Batchfile | mit | yonglehou/WebApi,LianwMS/WebApi,yonglehou/WebApi,lungisam/WebApi,abkmr/WebApi,LianwMS/WebApi,congysu/WebApi,chimpinano/WebApi,chimpinano/WebApi,scz2011/WebApi,congysu/WebApi,lungisam/WebApi,abkmr/WebApi,lewischeng-ms/WebApi,scz2011/WebApi,lewischeng-ms/WebApi |
062b144fa953528f57a4edd48ad45d2c0f99cf00 | build.cmd | build.cmd | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" (
echo WARNING! NuGet executable not found in PATH so build may fail!
echo For more on NuGet, see https://github.com/nuget/home
)
pushd "%~dp0"
nuget restore && call :build Debug && call :build Release
popd
goto :EOF
:build
... | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" (
echo WARNING! NuGet executable not found in PATH so build may fail!
echo For more on NuGet, see https://github.com/nuget/home
)
pushd "%~dp0"
nuget restore && call :build Debug %* && call :build Release %*
popd
goto :EOF
:... | Build script args pass-thru fix to get clean.cmd working again | Build script args pass-thru fix to get clean.cmd working again
| Batchfile | apache-2.0 | atifaziz/NCrontab,atifaziz/NCrontab |
285ad69b1cb2a914ccd809f29fce1d0e6ca3e0f1 | run-test.cmd | run-test.cmd | @if "%_echo%" neq "on" echo off
:: To run tests outside of MSBuild.exe
:: %1 is the path to the tests\<OSConfig> folder
:: %2 is the path to the packages folder
pushd %1
FOR /D %%F IN (*.Tests) DO (
IF EXIST %%F\netcoreapp1.0 (
pushd %%F\netcoreapp1.0
CALL RunTests.cmd %2
popd
)
)
popd
| @if "%_echo%" neq "on" echo off
:: To run tests outside of MSBuild.exe
:: %1 is the path to the tests\<OSConfig> folder
:: %2 is the path to the packages folder
pushd %1
FOR /D %%F IN (*.Tests) DO (
IF EXIST %%F\netcoreapp1.0 (
pushd %%F\netcoreapp1.0
IF EXIST RunTests.cmd (
CALL RunTests.cmd %2
)
popd
... | Check for RunTest.cmd before running test on Nano. | Check for RunTest.cmd before running test on Nano.
| Batchfile | mit | manu-silicon/corefx,billwert/corefx,ravimeda/corefx,alphonsekurian/corefx,marksmeltzer/corefx,krytarowski/corefx,rubo/corefx,stephenmichaelf/corefx,richlander/corefx,DnlHarvey/corefx,ericstj/corefx,weltkante/corefx,YoupHulsebos/corefx,jhendrixMSFT/corefx,rahku/corefx,nbarbettini/corefx,alphonsekurian/corefx,dhoehna/cor... |
6ab1d7313c299e2c5f6685e8c21846d0a7fa4f34 | NaturalDocs/NaturalDocs.bat | NaturalDocs/NaturalDocs.bat | @echo off
set NaturalDocsParams=
rem Shift and loop so we can get more than nine parameters.
rem This is especially important if we have spaces in file names.
:MORE
if "%1"=="" goto NOMORE
set NaturalDocsParams=%NaturalDocsParams% %1
shift
goto MORE
:NOMORE
perl NaturalDocs %NaturalDocsParams%
set ... | @perl %~dp0NaturalDocs %* | Make the Wndows batch callable from any directory | Make the Wndows batch callable from any directory
The perl script NaturalDocs shuld be referred to with the same path
as the calling batch, otherwise the script would have to be in the
search path. The %~dp0 environment variable points to the directory
which the script is being executed in.
All batch arguments can be... | Batchfile | agpl-3.0 | prantlf/NaturalDocs,prantlf/NaturalDocs,prantlf/NaturalDocs |
336ec518208b2eaf2fe0ccd7edddfed4e872d810 | buildbot/buildbot_pnacl.bat | buildbot/buildbot_pnacl.bat | :: Copyright (c) 2012 The Native Client Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
set "PATH=c:\cygwin\bin;%PATH%"
bash -c "buildbot/buildbot_pnacl.sh %*"
if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL%
endlocal
| :: Copyright (c) 2012 The Native Client Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
:: Load the hermetic cygwin environment (downloading/installing/updating
:: it if necessary).
call "%~dp0cygwin_env.bat"
bash -c... | Build Pnacl in hermetic cygwin Use the same cygwin used for the GNU toolchain. This gets us a standard environment that is kept updated on the bots (see cygwin_env.bat). | Build Pnacl in hermetic cygwin
Use the same cygwin used for the GNU toolchain. This gets us a standard environment that is kept updated on the bots (see cygwin_env.bat).
R=jvoung@chromium.org,robertm@chromium.org,sehr@chromium.org
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2918
Review URL: https://ch... | Batchfile | bsd-3-clause | nacl-webkit/native_client,sbc100/native_client,sbc100/native_client,sbc100/native_client,nacl-webkit/native_client,sbc100/native_client,sbc100/native_client,sbc100/native_client,nacl-webkit/native_client,nacl-webkit/native_client,nacl-webkit/native_client |
449f1b0515b8e475b9a3841575af33ed49639880 | recipes/tcplotter/bld.bat | recipes/tcplotter/bld.bat | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 --prefix=%PREFIX% ..
if e... | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=... | Adjust build for windows to change how prefix is defined | Adjust build for windows to change how prefix is defined
| Batchfile | bsd-3-clause | jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes |
f586486c4e62185b0bdaf2734d2664f009250e65 | contrib/client-side/diff3wrap.bat | contrib/client-side/diff3wrap.bat | @ECHO OFF
REM Configure your favorite diff3/merge program here.
SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe"
SET MINE=%9
SHIFT
SET OLDER=%9
SHIFT
SET YOURS=%9
REM Call the merge command (change the following line to make sense)
%DIFF3% --older %OLDER% --mine %MINE% --yours %YOURS%
REM After performing... | @ECHO OFF
REM Configure your favorite diff3/merge program here.
SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe"
REM We only have access to nine parameters at a time. We use SHIFT to slide
REM our nine-parameter window a little bit so we can get to what we need.
SET MINE=%9
SHIFT
SET OLDER=%9
SHIFT
SET YOU... | Add a helpful comment for folks unfamiliar with the SHIFT construct. | Add a helpful comment for folks unfamiliar with the SHIFT construct.
* contrib/client-side/diff3wrap.bat
| Batchfile | apache-2.0 | jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion |
c8696c2c43fb698f965b2aa0e2b47e311c4f5cc0 | scripts/update_merge.bat | scripts/update_merge.bat | @ECHO OFF
REM Set data directory with GTFS files as text in separate directories
SET DATA_DIRECTORY="%~dp0..\data\gtfs"
REM Set output directory for tests in GTFS zip format
REM Don't chose a directory inside %DATA_DIRECTORY%
SET GTFS_OUTPUT_DIRECTORY="%~dp0tests"
REM Set output file for all tests combined in GTFS z... | @ECHO OFF
REM Set data directory with GTFS files as text in separate directories
SET DATA_DIRECTORY="%~dp0..\data\gtfs"
REM Set output directory for tests in GTFS zip format
REM Don't chose a directory inside %DATA_DIRECTORY%
SET GTFS_OUTPUT_DIRECTORY="%~dp0tests"
REM Set output file for all tests combined in GTFS z... | Fix for spaces in path of repository | Fix for spaces in path of repository
| Batchfile | mit | plannerstack/testset,plannerstack/testset |
cb9c4e21f696236e84d9228874a307083b5788ba | packer/windows/buildenv.bat | packer/windows/buildenv.bat | rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you ma... | rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you ma... | Update Windows build to use Visual Studio 2015 / VC14. | GEODE-2741: Update Windows build to use Visual Studio 2015 / VC14.
| Batchfile | apache-2.0 | mhansonp/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,mhansonp/geode-native,pivotal-jbarrett/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,mmartell/geode-native,pivotal-jbarrett/geode-native,mhansonp/geode-native,pivotal-jbarrett... |
1bbd4caead30363414e6cad6c1e245f890d1c30f | build_bdists.bat | build_bdists.bat | call tools\build_win_bdist64-py26.bat
call tools\build_win_bdist32-py26.bat
call tools\build_win_bdist64-py27.bat
call tools\build_win_bdist32-py27.bat
call tools\build_win_bdist32-py32.bat
call tools\build_win_bdist64-py32.bat
| call tools\build_win_bdist64-py26.bat
call tools\build_win_bdist32-py26.bat
call tools\build_win_bdist64-py27.bat
call tools\build_win_bdist32-py27.bat
call tools\build_win_bdist32-py32.bat
call tools\build_win_bdist64-py32.bat
call python setup.py sdist --formats=zip,gztar
| Create archives in windows build script | BLD: Create archives in windows build script
| Batchfile | bsd-3-clause | alekz112/statsmodels,cbmoore/statsmodels,wzbozon/statsmodels,cbmoore/statsmodels,josef-pkt/statsmodels,hainm/statsmodels,hainm/statsmodels,DonBeo/statsmodels,bzero/statsmodels,bert9bert/statsmodels,YihaoLu/statsmodels,phobson/statsmodels,astocko/statsmodels,detrout/debian-statsmodels,wzbozon/statsmodels,nvoron23/statsm... |
411a91ff3218adc870cee4d962ed296fa6498b36 | docu/build.bat | docu/build.bat | doxygen
cd latex
pdflatex -shell-escape refman.tex
makeindex -s ../refman.ist refman.idx
pdflatex -shell-escape refman.tex
pdflatex -shell-escape refman.tex
cd ..
copy latex\refman.pdf .
| doxygen
cd latex
pdflatex -interaction=nonstopmode -shell-escape refman.tex
makeindex -s ../refman.ist refman.idx
pdflatex -interaction=nonstopmode -shell-escape refman.tex
pdflatex -interaction=nonstopmode -shell-escape refman.tex
cd ..
copy latex\refman.pdf .
| Call pdflatex in non stop mode | Call pdflatex in non stop mode
| Batchfile | bsd-3-clause | t-b/igor-unit-testing-framework,t-b/igor-unit-testing-framework |
19ab9d894b9935f071d8e3979c8be1d7a4dc5983 | system_user/system_user_database/action_functions/test/test_action_user_login.bat | system_user/system_user_database/action_functions/test/test_action_user_login.bat |
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f ..\action_user_login.sql 1> test_action_user_login.log 2>&1
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f test_action_user_login.sql 1>> test_act... |
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f ..\action_user_login.sql 1> test_action_user_login.log 2>&1
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f test_action_user_login_master.sql 1>> t... | Add variable for password to call | Add variable for password to call
| Batchfile | apache-2.0 | james-cantrill/funda_components,james-cantrill/funda_components |
77daac7b037d16bd7cd0b113ab94ea8118258069 | js.thirdparty.bat | js.thirdparty.bat | "C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.autocomplete.js ^
--js=jquery/jquery.tablesor... | "C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.autocomplete.js ^
--js=jquery/jquery.tablesor... | Remove another jsBeizer reference as we weren't using it | Remove another jsBeizer reference as we weren't using it
| Batchfile | mit | marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy |
092e55bfdee7477866f77f927d0e995420b2cb04 | kw.cmd | kw.cmd | @echo off
setlocal
pushd "%~dp0"
for /f %%i in (kwindex.txt) do call :id %%i
goto :EOF
:id
setlocal
echo %1
for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author}\n"`) do set x=%%i
call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1
copy %temp%\%~nx1 %... | @echo off
setlocal
pushd "%~dp0"
for /f %%i in (kwindex.txt) do call :id %%i
goto :EOF
:id
setlocal
echo %1
for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author|user}\n"`) do set x=%%i
call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1
copy %temp%\%~... | Expand author in Id keyword with user portion only | Expand author in Id keyword with user portion only
| Batchfile | apache-2.0 | brumschlag/elmah.1x,Dim0N22/elmah.1x,MichaelAllenMiller/elmah.1x,tyagimanoj12/elmah.1x,bsagar27/elmah.1x,shabbirh/elmah.1x,praveen225627/elmah.1x,sevenno7/elmah.1x,mstodd/elmah.1x,kevinrademan/elmah.1x,plkumar/elmah.1x,koala59230/elmah.1x,devnixs/elmah.1x,nobitagamer/elmah.1x,isurufonseka/elmah.1x,plkumar/elmah.1x,devn... |
aea6d03323704db98fdd365226d8b4e567270868 | samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat | samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat | @echo off
REM ---------------------------------------------------------------------------
REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM ... | @echo off
REM ---------------------------------------------------------------------------
REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM ... | Fix http-analytics quickstart script for windows | Fix http-analytics quickstart script for windows
| Batchfile | apache-2.0 | callkalpa/product-as,wso2/product-as,ChanakaCooray/product-as |
a5c372bb3b4a26eee0788750b05da9629fe53be6 | ci/install.bat | ci/install.bat | curl -sSf https://static.rust-lang.org/dist/rust-1.10.0-i686-pc-windows-msvc.exe -o rust.exe
rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust"
set PATH=%PATH%;C:\Rust\bin
curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe
7z x LLVM.exe -oC:\LLVM
set PATH=%PATH%;C:\LLVM\bin
set LIB... | curl -sSf https://static.rust-lang.org/dist/rust-1.24.0-i686-pc-windows-msvc.exe -o rust.exe
rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust"
set PATH=%PATH%;C:\Rust\bin
curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe
7z x LLVM.exe -oC:\LLVM
set PATH=%PATH%;C:\LLVM\bin
set LIB... | Update Rust version used by Appveyor | Update Rust version used by Appveyor
| Batchfile | apache-2.0 | KyleMayes/clang-rs |
d41aa39f4271563d320dae651d1ef3303b318e2e | test-setup.cmd | test-setup.cmd | @ECHO OFF
SET BASEDIR=%~dp0
PUSHD %BASEDIR%
IF NOT EXIST pyenv\NUL GOTO NOENVDIR
ECHO removing existing environment
RMDIR /S /Q pyenv
:NOENVDIR
virtualenv pyenv
CALL pyenv\Scripts\activate
python -m pip install -r pyenv.pkgs
CALL pyenv\Scripts\deactivate
POPD
| @ECHO OFF
SET BASEDIR=%~dp0
PUSHD %BASEDIR%
IF NOT EXIST pyenv\NUL GOTO NOENVDIR
ECHO removing existing environment
RMDIR /S /Q pyenv
:NOENVDIR
virtualenv pyenv
CALL pyenv\Scripts\activate
python -m pip install -r pyenv.pkgs --no-cache-dir
CALL pyenv\Scripts\deactivate
POPD
| Disable pip cache dir on Windows | Disable pip cache dir on Windows
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
bc534fffc64e037fb99d43acf4025d8df42904f3 | Applications/Specware/bin/windows/Specware4.cmd | Applications/Specware/bin/windows/Specware4.cmd | set SPECWARE4=\Progra~1\Specware4
rem SWPATH needs /s rather than \s so URI parsing works
set SWPATH=/Progra~1/Specware4:/
set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6
rem Set allegro to the version you have
set ALLEGRO=C:\Progra~1\acl62
rem set ALLEGRO=C:\Progra~1\acl61
set SPECWARE_BIN=$SPECWARE4\Applications... | set SPECWARE4=\Progra~1\Specware4
rem SWPATH needs /s rather than \s so URI parsing works
set SWPATH=/Progra~1/Specware4:/
set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6
rem Set allegro to the version you have
rem set ALLEGRO=C:\Progra~1\acl62
set ALLEGRO=C:\Progra~1\acl61
set SPECWARE_BIN=$SPECWARE4\Applications... | Use xeli instead of eli | Use xeli instead of eli
git-svn-id: 9ecf60ce9baff443e30a0472d3fd222fcb8117cf@242 7b97033b-253e-4a5c-9b07-e25f9089a9fd
| Batchfile | bsd-2-clause | KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware |
5363c891e37aa0dee6b82cb867252d8391b35c04 | app.bat | app.bat | java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv | set PATH=%PATH%;lib
java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv | Make Netica.dll available to Windows | Make Netica.dll available to Windows
| Batchfile | mit | jhendess/vetaraus,jhendess/vetaraus |
d8ffcba544ee5fd125f5cf6331e6a905cbe0265d | run_test.bat | run_test.bat | .\Debug\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp
.\Debug\res2h.exe .\test .\results\data.bin -b -s -v | .\Release\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp
.\Release\res2h.exe .\test .\results\data.bin -b -s -v
.\Release\res2hdump.exe .\results\data.bin .\results -f -v | Update tests to dump binary archive | Update tests to dump binary archive
| Batchfile | bsd-2-clause | HorstBaerbel/res2h,HorstBaerbel/res2h,HorstBaerbel/res2h |
f3ecf49caffe330369850b46011313ed1cb5ebc1 | tools/createNugetpackage.bat | tools/createNugetpackage.bat |
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release
nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release >>log.txt |
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release
nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release | Add script to create nuget packages | Add script to create nuget packages
| Batchfile | mit | kennytordeur/CQRS |
08af6349eca8493e2936fc65c20bca13b6a8a38a | Setup/Portable/NuGet/Push.cmd | Setup/Portable/NuGet/Push.cmd | @echo off
echo.
echo Portable Accord.NET Framework NuGet package publisher
echo =========================================================
echo.
echo This Windows batch file uses NuGet to automatically
echo push the Portable Accord.NET Framework packages to the gallery.
echo.
timeout /T 5
:: Directory s... | @echo off
echo.
echo Portable Accord.NET Framework NuGet package publisher
echo =========================================================
echo.
echo This Windows batch file uses NuGet to automatically
echo push the Portable Accord.NET Framework packages to the gallery.
echo.
timeout /T 5
:: Directory s... | Use no-space path to current directory | Use no-space path to current directory
| Batchfile | lgpl-2.1 | cureos/accord,cureos/accord,cureos/accord,cureos/accord,cureos/accord |
f61e0282c96316fe6f480969ade8b789f4f177fb | scripts/build_gitlab/win.bat | scripts/build_gitlab/win.bat | @echo off
rem ======================================================================== rem
rem Copyright 2015-2017 Intel Corporation rem
rem rem
rem Licensed under the Apache License, Version 2.0 (the "License");... | @echo off
rem ======================================================================== rem
rem Copyright 2015-2017 Intel Corporation rem
rem rem
rem Licensed under the Apache License, Version 2.0 (the "License");... | Revert "fix syntax in Win ci build script" | Revert "fix syntax in Win ci build script"
This reverts commit f0eb26d197ef3f0dd750caefc7d25940102f8a18.
| Batchfile | apache-2.0 | wilsonCernWq/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray |
5553df17a291bd644ab796caf510616246c343ee | resources/skeleton/aspnet/build.cmd | resources/skeleton/aspnet/build.cmd |
setlocal
set BUILDSTAGE=build-stage
set NUGETPATH=%BUILDSTAGE%\.nuget
set NUGET=%NUGETPATH%\nuget.exe
set PACKAGESPATH=%NUGETPATH%\packages
:Build_EnvCheck
call e5r 1>nul
if "%ERRORLEVEL%"=="0" goto Build_NugetDownload
echo.
echo E5R Environment not installed!
goto Build_End
:Build_NugetDownload
if exis... |
setlocal
set BUILDSTAGE=build-stage
set NUGETPATH=%BUILDSTAGE%\.nuget
set NUGET=%NUGETPATH%\nuget.exe
set PACKAGESPATH=%NUGETPATH%\packages
:Build_EnvCheck
call e5r 1>nul
if "%ERRORLEVEL%"=="0" goto Build_NugetDownload
echo.
echo E5R Environment not installed!
goto Build_End
:Build_NugetDownload
if exis... | Use version of file and defaults runtime and arch | Use version of file and defaults runtime and arch
| Batchfile | mit | e5r/env,e5r/env |
f0cde72d54c61c3fe522649b428690fb026a5f6e | bin/hubot.cmd | bin/hubot.cmd | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" == "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if ... | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
for /f "tokens=1,2 delims==" %%i in (.env) do set %%i=%%j
if "%REDIS_URL%" ... | Load .env file on windows. | Load .env file on windows.
| Batchfile | mit | lisb/daab-starter,lisb/daab-starter,lisb/daab-starter |
07d5c20fb8c48e4ce9933449b3786d9a571a508c | webkit/tools/layout_tests/run_webkit_tests.bat | webkit/tools/layout_tests/run_webkit_tests.bat | @..\..\..\third_party\python_24\python.exe run_webkit_tests.py %*
| @%~dp0\..\..\..\third_party\python_24\python.exe %~dp0\run_webkit_tests.py %*
| Make run_webkit_test.bat workable even if we execute it on a directory other than webkit\tools\layout_tests\. | Make run_webkit_test.bat workable even if we execute it
on a directory other than webkit\tools\layout_tests\.
%~dp0 means Drive name + Path name of the 0th argument (the bat file).
Original patch by tkent@google.com.
See http://codereview.chromium.org/113389
r=ojan
TEST=None
BUG=None
git-svn-id: dd90618784b6a4b323e... | Batchfile | bsd-3-clause | wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.