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 |
|---|---|---|---|---|---|---|---|---|---|
a91d498e84d48cb53899be3f134a33b517f06ec6 | Tools/AppVeyor/Test.cmd | Tools/AppVeyor/Test.cmd | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests from: %%~dpnxa"
vstest.console /inIsolation /platform:%platform% /logger:AppVeyor %%~dpnxa
... | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
set vstest="%VSINSTALLDIR%Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe"
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests f... | Use a different version of vstest.console to make sure the exit code is correct. | Use a different version of vstest.console to make sure the exit code is correct.
| Batchfile | apache-2.0 | dlemstra/Magick.NET,dlemstra/Magick.NET |
435d8aaaae19d2d1b961fcc647342046143bf409 | distribution/template-controller/bin/startMongo.bat | distribution/template-controller/bin/startMongo.bat | @rem ***************************************************************************
@rem (C) Copyright 2016 Jerome Comte and Dorian Cransac
@rem
@rem This file is part of STEP
@rem
@rem STEP is free software: you can redistribute it and/or modify
@rem it under the terms of the GNU Affero General Public License as publ... | @rem ***************************************************************************
@rem (C) Copyright 2016 Jerome Comte and Dorian Cransac
@rem
@rem This file is part of STEP
@rem
@rem STEP is free software: you can redistribute it and/or modify
@rem it under the terms of the GNU Affero General Public License as publ... | Put MongoDB log files in the log folder | Put MongoDB log files in the log folder | Batchfile | agpl-3.0 | denkbar/step,denkbar/step,denkbar/step,denkbar/step,denkbar/step |
5436104b31feb889f107aa8f152e54b5d21fdd37 | build-exe.bat | build-exe.bat | msbuild /p:Configuration=Release NSISInfoWriter.sln
ilrepack /targetplatform:v4 ^
/out:target\nsisiw.exe ^
/parallel ^
"%~dp0\NSISInfoWriter\bin\Release\nsisiw.exe" ^
"%~dp0\NSISInfoWriter\bin\Release\CommandLine.dll" | msbuild /p:Configuration=Release NSISInfoWriter.sln
ilrepack /targetplatform:v4 ^
/out:target\nsisiw.exe ^
/parallel ^
/ndebug ^
"%~dp0\NSISInfoWriter\bin\Release\nsisiw.exe" ^
"%~dp0\NSISInfoWriter\bin\Release\CommandLine.dll" | Disable debug information generation when using ilrepack | Disable debug information generation when using ilrepack
| Batchfile | mit | segrived/NSISInfoWriter |
b36a50ce04994182ff2a6ca15118e678ba1c9dab | .jenkins-win.bat | .jenkins-win.bat |
md build
cd build
cmake -DLIBWS_WITH_AUTOBAHN=ON ..
cmake --build .
ctest
bin\Debug\autobahntest.exe --config ..\test\autobahn\libws.cfg
| cd deps
cd libevent
md build
cd build
cmake -DEVENT__DISABLE_TESTS=ON -DEVENT__DISABLE_REGRESS=ON -DEVENT__DISABLE_BENCHMARK=ON ..
cd ..
cd ..
cd ..
md build
cd build
cmake -DLibevent_DIR=deps/libevent/build/ -DLIBWS_WITH_AUTOBAHN=ON ..
cmake --build .
ctest
bin\Debug\autobahntest.exe --config ..\test\autobahn\libws... | Update the jenkins build to build Libevent. | Update the jenkins build to build Libevent.
| Batchfile | mit | couchbasedeps/libws,JoakimSoderberg/libws,couchbasedeps/libws,JoakimSoderberg/libws,JoakimSoderberg/libws,couchbasedeps/libws |
39a022200dd8b7aa9bb5eb7d5ffeb67d9a2e2076 | tests/runall.bat | tests/runall.bat | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
../../runVimTests/bin/runVimTests.cmd --pure vimgrep.suite
| @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
echo "usage: runall.bat clean|run"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
echo Running
../../runVimTests/bin/runVimTests.cmd --pure vimgre... | Add an option to clean the test directory | Add an option to clean the test directory
| Batchfile | unlicense | dkprice/vim-easygrep,dkprice/vim-easygrep |
24d10584a6f5db583c75dbb4dc191854a9ae5ea5 | trunk/build.bat | trunk/build.bat | @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces-1.4.3.jar;tools\lib\velocity-1.3-dev.jar;tools\lib\jdom-b7.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| Use velocity and jdom that was copied from jakarta-site2 | Use velocity and jdom that was copied from jakarta-site2
git-svn-id: 88158f914d5603334254b4adf21dfd50ec107162@107714 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | aduprat/james,rouazana/james,chibenwa/james,aduprat/james,chibenwa/james,rouazana/james,aduprat/james,aduprat/james,rouazana/james,chibenwa/james,rouazana/james,chibenwa/james |
68a37529312d8b6836df4f0f796f14e26e2a0b80 | CSharp/Library/Microsoft.Bot.Builder.History/createpackage.cmd | CSharp/Library/Microsoft.Bot.Builder.History/createpackage.cmd | @echo off
echo *** Building Microsoft.Bot.Builder.History
setlocal
setlocal enabledelayedexpansion
setlocal enableextensions
set errorlevel=0
mkdir ..\nuget
erase /s ..\nuget\Microsoft.Bot.Builder.History*nupkg
msbuild /property:Configuration=release Microsoft.Bot.Builder.History.csproj
for /f %%v in ('powershell -no... | @echo off
echo *** Building Microsoft.Bot.Builder.History
setlocal
setlocal enabledelayedexpansion
setlocal enableextensions
set errorlevel=0
mkdir ..\nuget
erase /s ..\nuget\Microsoft.Bot.Builder.History*nupkg
msbuild /property:Configuration=release Microsoft.Bot.Builder.History.csproj
for /f %%v in ('powershell -no... | Update nuget commandline tool to 4.1.0 for bot.builder.history | Update nuget commandline tool to 4.1.0 for bot.builder.history
| Batchfile | mit | msft-shahins/BotBuilder,yakumo/BotBuilder,msft-shahins/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder |
37ecd3a2d67d463167499d40c373f7a614975375 | apm-collector/apm-collector-worker/bin/collector-service.bat | apm-collector/apm-collector-worker/bin/collector-service.bat | @echo off
setlocal
set COLLECOTR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_BASE_PATH=%~dp0%..
set COLLECTOR_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%COLLECTOR_BASE_PATH%\config;
SET CLASSPATH=%COLLECTOR_BASE_PATH%\libs\*;%CLASSPATH%
if ""%JAVA_HOME%"" == """" (
set _EXECJAVA=java
) else (
set _E... | @echo off
setlocal
set COLLECOTR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_BASE_PATH=%~dp0%..
set COLLECTOR_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%COLLECTOR_BASE_PATH%\config;
SET CLASSPATH=%COLLECTOR_BASE_PATH%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:"=%"\bin\java
)
... | Fix windows script start collector failure. | Fix windows script start collector failure.
| Batchfile | apache-2.0 | apache/skywalking,ascrutae/sky-walking,OpenSkywalking/skywalking,hanahmily/sky-walking,zhangkewei/sky-walking,apache/skywalking,ascrutae/sky-walking,apache/skywalking,ascrutae/sky-walking,apache/skywalking,hanahmily/sky-walking,OpenSkywalking/skywalking,apache/skywalking,ascrutae/sky-walking,zhangkewei/sky-walking,apac... |
d533a00235e2e93776a3823f6e34b8db4641ae2a | spf13-vim-windows-install.cmd | spf13-vim-windows-install.cmd | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
call git clone --recursive -b 3.0 git://github.com/spf13/spf13-vim.git "%BASE_DIR%"
call mkdir "%BASE_DIR%\.vim\bundle"
call mklink /J "%HOME%\.vim" "%BASE_DIR%\.vim"
call mklink "%HO... | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
IF NOT EXIST "%BASE_DIR%" (
call git clone --recursive -b 3.0 https://github.com/spf13/spf13-vim.git "%BASE_DIR%"
) ELSE (
@set ORIGINAL_DIR=%CD%
echo updating spf13-vim
ch... | Make Windows Installer more robust & auto updating | Make Windows Installer more robust & auto updating | Batchfile | apache-2.0 | jswk/spf13-vim,lhh411291769/spf13-vim,lightcn/spf13-vim,wongsyrone/spf13-vim,qingzew/spf13-vim,jadewizard/spf13-vim,IdVincentYang/spf13-vim,dawnsong/spf13-vim,darcylee/magic-vim,diogro/spf13-vim,fuhongxue/spf13-vim,carakan/supra-vim,huhuang03/spf13-vim,dawnsong/spf13-vim,xiaoDC/vim,zzzzzsh/spf13-vim,millerdw06/spf13-vi... |
a999cbea56c2c3964207645e81bed3ad847133a7 | deploy_win32.bat | deploy_win32.bat | @echo off
echo Compiling...
cd windeployqt
qmake windeployqt.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
cd ..
qmake presi-aoke.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
echo Copying files to staging
del /Q /S .\staging
mkdir... | @echo off
echo Compiling...
cd windeployqt
qmake windeployqt.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
cd ..
qmake presi-aoke.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
echo Copying files to staging
del /Q /S .\staging
mkdir... | Trim down the Windows installer size | Trim down the Windows installer size
| Batchfile | apache-2.0 | fhunleth/presi-aoki,fhunleth/presi-aoke,fhunleth/presi-aoke,fhunleth/presi-aoki |
4ac2bc77e3aa7542ef5e69d8b8f5cba5ff119862 | scripts/release_win.bat | scripts/release_win.bat | @echo off
if "%~1" == "" (
echo Usage: release_win.bat path-to-bin-folder
goto end
)
setlocal
set destroot=%cd%\%~1
set DESTDIR=
mkdir build
cd build
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\x64 -D COMPILER=ICC -G "Visual Studio 12 2013 Win64" ..
ICProjCon... | @echo off
if "%~1" == "" (
echo Usage: release_win.bat path-to-bin-folder
goto end
)
setlocal
set destroot=%cd%\%~1
set DESTDIR=
mkdir build
cd build
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\x64 -D COMPILER=ICC -G "Visual Studio 12 2013 Win64" ..
ICProjCon... | Check for errors regarding ICProjConvert150 | Check for errors regarding ICProjConvert150
| Batchfile | apache-2.0 | embree/embree,embree/embree,embree/embree,Sjoerdie/embree,embree/embree,Sjoerdie/embree,Sjoerdie/embree,Sjoerdie/embree |
884eff2759d71df29ef0d5627f9fcce003af3179 | Build/MakeSharpDX.CertificationTests.VS2013.cmd | Build/MakeSharpDX.CertificationTests.VS2013.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | Fix path to SharpDX.build for certification tests. | [Build] Fix path to SharpDX.build for certification tests.
| Batchfile | mit | andrewst/SharpDX,fmarrabal/SharpDX,fmarrabal/SharpDX,jwollen/SharpDX,dazerdude/SharpDX,PavelBrokhman/SharpDX,RobyDX/SharpDX,VirusFree/SharpDX,VirusFree/SharpDX,VirusFree/SharpDX,RobyDX/SharpDX,manu-silicon/SharpDX,manu-silicon/SharpDX,PavelBrokhman/SharpDX,waltdestler/SharpDX,TechPriest/SharpDX,andrewst/SharpDX,Ixonos-... |
95bfcd3282e58861475db97e5f4ce0e5e83c416f | tests/runall.bat | tests/runall.bat | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
echo "usage: runall.bat clean|run"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
echo Running
../../runVimTests/bin/runVimTests.cmd --pure vimgre... | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
if %1.==runall. goto RunAll
echo "usage: runall.bat clean|run|runall"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
shift
echo Running %1 %2 %3 %... | Add an argument to run only certain tests | Add an argument to run only certain tests
| Batchfile | unlicense | dkprice/vim-easygrep,dkprice/vim-easygrep |
a66f00047350c11fbe9993d333c432c63a75f371 | context-menu-disable/context-menu-disable-tortoise-git.bat | context-menu-disable/context-menu-disable-tortoise-git.bat | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=TortoiseGit
reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\Background\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\shellex\ContextMe... | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=TortoiseGit
reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\Background\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\shellex\ContextMe... | Disable tortoise git context menu on more types | Disable tortoise git context menu on more types
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
301e893ec5f971a1f978786974632e3bf6b05778 | Greedy/deploy.bat | Greedy/deploy.bat | call sbt assembly
del greedy.zip
java -jar out/proguard5.0/lib/proguard.jar @proguard.config
"C:\Program Files\7-Zip\7za.exe" a -tzip greedy.zip greedy.jar
PAUSE | call sbt assembly
del greedy.zip
java -jar out/proguard5.0/lib/proguard.jar @proguard.config
"C:\Program Files\7-Zip\7za.exe" a -tzip greedy.zip greedy.jar
del greedy.jar
PAUSE | Delete jar after packaging in zip | Delete jar after packaging in zip
| Batchfile | apache-2.0 | Oduig/swoc2014,Oduig/swoc2014,Oduig/swoc2014 |
887f0e2f6ff3763e0afc8bf3523be05085850a81 | scripts/ba.bat | scripts/ba.bat | rem ba.bat - download and build all of scintilla and scite
rd /s/q scintilla scite
cvs co scintilla scite
cd scintilla
call delbin
del/q bin\*.a
call delcvs
call zipsrc
cd win32
nmake -f scintilla.mak
cd ..
cd ..
cd scite
del/q bin\*.properties
del/q bin\SciTE
call delbin
call delcvs
call zipsrc
cd win32
nmake -f scite... | rem ba.bat - download and build all of scintilla and scite
rd /s/q scintilla scite
cvs co scintilla scite
cd scintilla
call delbin
del/q bin\*.a
call delcvs
call zipsrc
cd win32
nmake -f scintilla.mak
cd ..
del/q bin\*.pdb
cd ..
cd scite
del/q bin\*.properties
del/q bin\SciTE
call delbin
call delcvs
call zipsrc
cd win3... | Delete pdb files so they are not included in source zips. | Delete pdb files so they are not included in source zips.
| Batchfile | isc | R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone |
1e7d3e79f35285744da8dcb1694d8ad60b6bb8ca | build-windows.cmd | build-windows.cmd | for /f %%c in ('wmic cpu get NumberOfCores ^| findstr [0-9]') do set "CORES=%%c"
set SOURCE_DIR=%CD%
set BUILD_DIR=../build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt-Installation\Tools\QtCreator\bin\jom.exe /J %CORES%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevC... | set BUILD_DIR=../build-sqlitewrapper
set CMAKE_BUILD_TYPE=Release
for /f %%c in ('wmic cpu get NumberOfCores ^| findstr [0-9]') do set "CORES=%%c"
set SOURCE_DIR=%CD%
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt-Installation\Tools\QtCreator\bin\jom.exe /J %CORES%
call "C:\Program Files (x86)\Microsoft Visual St... | Move build type variables to the top | Move build type variables to the top
to make merging of both build scripts easy
| Batchfile | bsd-3-clause | kullo/smartsqlite,kullo/smartsqlite,kullo/smartsqlite |
ff3031d37be93c96c47b4a37a31c1822a2af75dd | build-windows.cmd | build-windows.cmd | set SOURCE_DIR=%CD%
set BUILD_DIR=build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=mingw32-make.exe -j2
cd ..
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COMMAND% -G "MinGW Makefiles" "%SOURCE_DIR%" || goto error
%MAKE_COMMAND% || goto error
cd "%SOURCE_DIR%"
e... | set SOURCE_DIR=%CD%
set BUILD_DIR=build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt\Tools\QtCreator\bin\jom.exe /J 2
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"
cd ..
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COM... | Convert Windows build script to MSVC | Convert Windows build script to MSVC
| Batchfile | bsd-3-clause | kullo/smartsqlite,kullo/smartsqlite,kullo/smartsqlite |
3a6c458bb1444c70a832d54726cd5ee9b50d0551 | package/lib-openblas-0.2.19-universal/scripts.win/install.bat | package/lib-openblas-0.2.19-universal/scripts.win/install.bat | @echo off
rem
rem Extra installation script
rem
rem See CK LICENSE.txt for licensing details.
rem See CK Copyright.txt for copyright details.
rem
rem Developer(s): Grigori Fursin, 2016-2017
rem
rem ############################################################
echo.
echo Preparing vars ...
cd %INSTALL_DIR%\%PACKAGE_SU... | @echo off
rem
rem Extra installation script
rem
rem See CK LICENSE.txt for licensing details.
rem See CK Copyright.txt for copyright details.
rem
rem Developer(s): Grigori Fursin, 2016-2017
rem
rem ############################################################
echo.
echo Preparing vars ...
cd %INSTALL_DIR%\%PACKAGE_SU... | Fix OpenBLAS build on Windows | Fix OpenBLAS build on Windows
| Batchfile | bsd-3-clause | ctuning/ck-math,ctuning/ck-math,ctuning/ck-math,ctuning/ck-math |
82726799c528522999154b6377e62d71567197da | native_client_sdk/src/sdktry.bat | native_client_sdk/src/sdktry.bat | @echo off
:: Copyright (c) 2012 The The Chromium 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
:: TODO(noelallen) Share list with POSIX
gcl try %* -b naclsdkm-mac -b naclsdkm-linux -b naclsdkm-linux ^
-b naclsd... | @echo off
:: Copyright (c) 2012 The The Chromium 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
:: TODO(noelallen) Share list with POSIX
gcl try %* -b naclsdkm-mac -b naclsdkm-linux -b naclsdkm-pnacl-linux ^
-b ... | Fix Windows bat file for SDK try | Fix Windows bat file for SDK try
The script currently does not run tries, since the try mechanism rejects
the entire request if any requrest bot is bogus.
Review URL: https://chromiumcodereview.appspot.com/10854028
git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@150839 0039d316-1c4b-4281-b951-d872f2087c98
| Batchfile | bsd-3-clause | Pluto-tv/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,PeterWangIntel/chromium-crosswalk,zcbenz/cefode-chromium,junmin-zhu/chromium-rivertrail,dushu1203/chromium.src,Just-D/chromium-1,Chilledheart/chromium,fujunwei/chromium-crosswalk,nacl-webkit/chrome_deps,Chilledheart/chromium,Just-D/chromium-1,hujiajie/pa-c... |
5b063a9117ba211460fa7e6b8356770080f97c3b | src/System.Private.ServiceModel/tools/scripts/BuildCertUtil.cmd | src/System.Private.ServiceModel/tools/scripts/BuildCertUtil.cmd | @echo off
setlocal
if not defined VisualStudioVersion (
if defined VS140COMNTOOLS (
call "%VS140COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
if defined VS120COMNTOOLS (
call "%VS120COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
echo Error: %~nx0 requires Visual Studio 2013 or ... | @echo off
setlocal
if not defined VisualStudioVersion (
if defined VS160COMNTOOLS (
call "%VS160COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
echo Error: %~nx0 requires Visual Studio 2019 because the .NET Core 3.0 SDK is needed.
echo Please see https://github.com/dotnet/wcf/blob/maste... | Fix script to require VS 2019. | Fix script to require VS 2019.
* Since converting to .NET 3.0 SDK projects we now need that SDK in order to build.
| Batchfile | mit | StephenBonikowsky/wcf,imcarolwang/wcf,dotnet/wcf,mconnew/wcf,imcarolwang/wcf,mconnew/wcf,dotnet/wcf,StephenBonikowsky/wcf,mconnew/wcf,dotnet/wcf,imcarolwang/wcf |
5a0d499bffb7891b0c4148226e8c0d68d0e816a0 | finishpackage.bat | finishpackage.bat | set S7Z=%~dp0.\bin\7za.exe
mkdir Package
copy Source\*.txt Package\
copy Source\*LICENSE* Package\
copy Source\*README* Package\
"%S7Z%" x -oPackage Build\package-*.7z
echo [Paths]>>Package\bin\qt.conf
echo Prefix=..>>Package\bin\qt.conf
pushd Package\include
for /f "delims=" %%D in ('dir /ad /b /s ^| sort... | set S7Z=%~dp0.\bin\7za.exe
mkdir Package
copy Source\*.txt Package\
copy Source\*LICENSE* Package\
copy Source\*README* Package\
"%S7Z%" x -oPackage Build\package-*.7z
echo [Paths]>>Package\bin\qt.conf
echo Prefix=..>>Package\bin\qt.conf
pushd Package\include
for /f "delims=" %%D in ('dir /ad /b /s ^| sort... | Update script, seems to work for Qt-5.7.0 now. | Update script, seems to work for Qt-5.7.0 now.
| Batchfile | apache-2.0 | MrHacky/qt-package-builder |
2b11cc9de601c61ba2e821633790d07c3c9756ee | scripts/make-package.bat | scripts/make-package.bat | @echo off
set zipcmd=%~dp0\tools\7z\7z.exe
pushd %~dp0\..\..
%zipcmd% a -r -x!scripts -xr!.* -x!__pycache__ -x!docs -x!README.md blenderseed-x.x.x.zip blenderseed
popd
move ..\..\blenderseed-x.x.x.zip .
pause
| @echo off
set zipcmd="%~dp0\tools\7z\7z.exe"
pushd %~dp0\..\..
%zipcmd% a -r -x!scripts -xr!.* -x!__pycache__ -x!docs -x!README.md blenderseed-x.x.x.zip blenderseed
popd
move ..\..\blenderseed-x.x.x.zip .
pause
| Tweak packaging script for spaces in filenames | Tweak packaging script for spaces in filenames
| Batchfile | mit | appleseedhq/blenderseed,appleseedhq/blenderseed,dictoon/blenderseed,dictoon/blenderseed |
ad116ceea8432ea8f0c1e952ad2836011782536f | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.607" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.608" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.608 update | [Nomad] Patch for version 0.608 update
| Batchfile | mit | LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide,Nogrod/Oxide-2,Nogrod/Oxide-2,Visagalis/Oxide |
84efc1f4e3f484253116ca3dacf2f4e8bd786474 | windows/build.bat | windows/build.bat | @echo on
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode microsoft-build-tools visualstudio2015community p4merge dotnet4.5 ruby nodejs.install stylecop conemu dejavufonts
call refreshenv
wget -c https://cygwin.com/setup-x86_64.exe
... | @echo on
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode p4merge dotnet4.5 ruby nodejs.install stylecop conemu dejavufonts ag
call refreshenv
wget -c https://cygwin.com/setup-x86_64.exe
setup-x86_64.exe -R "C:\cygwin64" -s http://m... | Add more lightweigth tools instead of full VS suite | Add more lightweigth tools instead of full VS suite
| Batchfile | agpl-3.0 | cyplo/dotfiles,cyplo/dotfiles |
4b3452f3a74dbabcdf70f94dab7d8db244a5227b | 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
EC... | @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... | Revert usage to power shell | Revert usage to power shell
| Batchfile | apache-2.0 | aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server |
efe8f21d839883934aeb0cacee0366016cd80888 | openmole/bin/openmole/resources/openmole.bat | openmole/bin/openmole/resources/openmole.bat | set PWD=%~dp0
start /MIN "%PWD%dbserver\bin\openmole-dbserver.bat"
mkdir "%UserProfile%\.openmole\.tmp"
set ran="%UserProfile%\.openmole\.tmp\%random%"
java -d64 -version >nul 2>&1
if errorlevel 1 goto is32bit
set FLAG="-XX:+UseCompressedOops"
:is32bit
java -Dosgi.locking=none -Dopenmole.location="%PWD%\" -Dosgi.classl... | set startdir=%cd%
set PWD=%~dp0
cd /d %~dp0
start /MIN dbserver\bin\openmole-dbserver.bat
cd %cd%
mkdir "%UserProfile%\.openmole\.tmp"
set ran="%UserProfile%\.openmole\.tmp\%random%"
java -d64 -version >nul 2>&1
if errorlevel 1 goto is32bit
set FLAG="-XX:+UseCompressedOops"
:is32bit
java -Dosgi.locking=none -Dopenmole.... | Fix launch script for windows. | Fix launch script for windows.
| Batchfile | agpl-3.0 | openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole |
37b3b244594a7af71e13bfdb78e1609a09f450db | RelUI/lib/copy.bat | RelUI/lib/copy.bat | copy ..\..\..\Rel\_Deployment\RelDBMS.jar .
copy ..\..\..\Rel\_Deployment\commons-codec-1.4.jar .
copy ..\..\..\Rel\_Deployment\commons-logging-1.1.1.jar .
copy ..\..\..\Rel\_Deployment\ecj-4.4.2.jar .
copy ..\..\..\Rel\_Deployment\httpclient-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\httpclient-cache-4.1.3.jar .
copy .... | copy ..\..\..\Rel\_Deployment\RelDBMS.jar .
copy ..\..\..\Rel\_Deployment\commons-codec-1.4.jar .
copy ..\..\..\Rel\_Deployment\commons-logging-1.1.1.jar .
copy ..\..\..\Rel\_Deployment\ecj-4.4.2.jar .
copy ..\..\..\Rel\_Deployment\httpclient-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\httpclient-cache-4.1.3.jar .
copy .... | Fix reference to Berkeley Java DB .jar file | Fix reference to Berkeley Java DB .jar file | Batchfile | apache-2.0 | DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel |
5a2c5063d014c75e2a44842fb385f6253f0155e1 | src/win2k/winpmc/instpmcfre.bat | src/win2k/winpmc/instpmcfre.bat | copy /B objfre\i386\winpmc.sys c:\winnt\system32\drivers
ntaddsvc winpmc
net start winpmc | copy /B objfre_wnet_x86\i386\winpmc.sys c:\winnt\system32\drivers
ntaddsvc winpmc
net start winpmc | Update directory tree for latest install of ddkbuild | Update directory tree for latest install of ddkbuild
| Batchfile | bsd-3-clause | pyrovski/papi,pyrovski/papi,arm-hpc/papi,pyrovski/papi,pyrovski/papi,arm-hpc/papi,arm-hpc/papi,arm-hpc/papi,pyrovski/papi,arm-hpc/papi,arm-hpc/papi,pyrovski/papi,pyrovski/papi,arm-hpc/papi,pyrovski/papi |
e88f2709ab9345429c5803c2bb55144fd3b35365 | prep-package.cmd | prep-package.cmd | cd /d %~dp0
mkdir OSVR-Unity-Dist
mkdir OSVR-Unity-Dist\src
mkdir OSVR-Unity-Dist\src\OSVR-Unity
mkdir OSVR-Unity-Dist\src\Managed-OSVR
xcopy Managed-OSVR OSVR-Unity-Dist\src\Managed-OSVR /Y /S
xcopy OSVR-Unity OSVR-Unity-Dist\src\OSVR-Unity /Y /S
| cd /d %~dp0
mkdir OSVR-Unity-Dist
mkdir OSVR-Unity-Dist\src
mkdir OSVR-Unity-Dist\src\OSVR-Unity
mkdir OSVR-Unity-Dist\src\Managed-OSVR
xcopy Managed-OSVR OSVR-Unity-Dist\src\Managed-OSVR /Y /S
xcopy OSVR-Unity OSVR-Unity-Dist\src\OSVR-Unity /Y /S
rem the -F 0x4 is to turn off smartypants.
third-party/disco... | Convert the README file to HTML and include it in the bundle. | Convert the README file to HTML and include it in the bundle.
| Batchfile | apache-2.0 | OSVR/OSVR-Unity,DuFF14/OSVR-Unity,JeroMiya/OSVR-Unity,grobm/OSVR-Unity,grobm/OSVR-Unity |
119fa315d6f8362c008d08f20cddbd55d8787f11 | deploy.bat | deploy.bat | @echo off
::Move into chrome directory, zip it, then return here.
cd chrome && call "7-zip.bat" && cd ..
::Merge psdle.js, psdle.user.js, and psdle.min.js to gh-pages.
call "deploy-sync.bat"
pause | ::This is a near full-circle deployment script for PSDLE.
::It does two major things:
:: - ./chrome/7-zip.bat - Zip up the PSDLE chrome extension properly for the webstore (and then opens the webstore for uploading).
:: - ./deploy-sync.bat - Copy psdle.js, psdle.user.js, and psdle.min.js to the gh-pages branch for eve... | Deploy - Open webstore editing page. | Deploy - Open webstore editing page.
Also a comment describing its purpose.
| Batchfile | mit | RePod/psdle |
726f3d5d5ad52585cbb83dff625e566a60eaff62 | build/buildNuget.XSerializer.bat | build/buildNuget.XSerializer.bat | msbuild /p:Configuration=Build ..\XSerializer\XSerializer.csproj
ildasm ..\XSerializer\bin\Build\XSerializer.dll /out:..\XSerializer\bin\Build\XSerializer.il
ren ..\XSerializer\bin\Build\XSerializer.dll ..\XSerializer\bin\Build\XSerializer.dll.orig
ilasm ..\XSerializer\bin\Build\XSerializer.il /res:..\XSerializer\bin\... | msbuild /p:Configuration=Build ..\XSerializer\XSerializer.csproj
ildasm ..\XSerializer\bin\Build\XSerializer.dll /out:..\XSerializer\bin\Build\XSerializer.il
ren ..\XSerializer\bin\Build\XSerializer.dll XSerializer.dll.orig
ilasm ..\XSerializer\bin\Build\XSerializer.il /res:..\XSerializer\bin\Build\XSerializer.res /dl... | Fix ren command in build script | Fix ren command in build script
Second parameter is the file name - the path can't be changed.
| Batchfile | mit | QuickenLoans/XSerializer |
4bb9dbc4c4ea906e3ff4bc55cf781a06bf1a7518 | 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" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=... | :: 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=... | Fix typo for Windows build | Fix typo for Windows build
| Batchfile | bsd-3-clause | jakirkham/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes |
9e95775727429dbbd62512a9521350524b919b2d | Build.bat | Build.bat | @if defined ECHO (echo %ECHO%) else (echo off)
REM
REM Builds everything and drops it into the Build folder.
REM You may specify additional arguments for MetaBuild also.
REM
"%~dp0tools\MetaBuild\bin\MetaBuild.bat" /rootdir "%~dp0." /metabuildconfig "%~dp0bin\MetaBuild.config.custom" %*
| @if defined ECHO (echo %ECHO%) else (echo off)
REM
REM Builds everything and drops it into the Build folder.
REM You may specify additional arguments for MetaBuild also.
REM
"%~dp0tools\MetaBuild\bin\MetaBuild.bat" /rootdir "%~dp0" /metabuildconfig "%~dp0bin\MetaBuild.config.custom" %*
| Revert previous change. Bug is actually elsewhere. | Revert previous change. Bug is actually elsewhere.
| Batchfile | apache-2.0 | Gallio/mbunit-v3,Gallio/mbunit-v3,xJom/mbunit-v3,ajayanandgit/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,ajayanandgit/mbunit-v3,ajayanandgit/mbunit-v3,xJom/mbunit-v3,xJom/mbunit-v3,ajayanandgit/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,Gallio/mbunit-v3,ajayanandgit... |
ab3b0d54f6f660719649237cedcc9c77789efad9 | 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-core |
3a7047da7bc30f45445771a105eb4d774163e16a | build_tools/jenkins_win_pylint.bat | build_tools/jenkins_win_pylint.bat |
set PYTHON=c:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set PATH=c:\python27;c:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
del /F test\sasview.txt
%PYLINT% --rcfile "%WORKSPACE%/build_tools/pylint.rc" -... |
set PYTHON=c:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set PATH=c:\python27;c:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
%PYLINT% --rcfile "%WORKSPACE%cd /build_tools/pylint.rc" -f parseable sasview-inst... | Update new windows pylint script | Update new windows pylint script
| Batchfile | bsd-3-clause | SasView/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,SasView/sasview |
a50e39083199867eb8d6ae1d61d84b0b2d04a157 | go.bat | go.bat | @echo off
SET "memParams=-Xms4g -Xmx10g"
SET debugParams=
SET "rf2Archive=G:\incoming\SnomedCT_RF2Release_INT_20160131.zip"
SET "secondDrive=D:\"
SET newMemory=
set /p newMemory="How much memory do you have available? [10g]: "
IF NOT [%newMemory%]==[] SET "memParams=-Xms4g -Xmx%newMemory%"
SET driveParam=
set /p dri... | @echo off
SET "memParams=-Xms4g -Xmx10g"
SET debugParams=
SET "rf2Archive=G:\incoming\SnomedCT_RF2Release_INT_20160131.zip"
SET "secondDrive=D:\"
SET newMemory=
set /p newMemory="How much memory do you have available? [10g]: "
IF NOT [%newMemory%]==[] SET "memParams=-Xms4g -Xmx%newMemory%"
SET driveParam=
set /p dri... | Add question mark for questions | Add question mark for questions
| Batchfile | apache-2.0 | IHTSDO/rf2-to-rf1-conversion,IHTSDO/rf2-to-rf1-conversion |
6c596b91eef08a4f2818b84306155ec69752e867 | build.cmd | build.cmd | @ECHO OFF
ECHO.
ECHO APPVEYOR_BUILD_NUMBER : %APPVEYOR_BUILD_NUMBER%
ECHO APPVEYOR_BUILD_VERSION : %APPVEYOR_BUILD_VERSION%
:: ensure we have Version.txt
IF NOT EXIST Version.txt (
ECHO Version.txt is missing!
GOTO error
)
:: get the version and comment from Version.txt lines 2 and 3
SET RELEASE=
SET COMMENT=
FOR ... | @ECHO OFF
ECHO.
ECHO APPVEYOR_BUILD_NUMBER : %APPVEYOR_BUILD_NUMBER%
ECHO APPVEYOR_BUILD_VERSION : %APPVEYOR_BUILD_VERSION%
:: ensure we have Version.txt
IF NOT EXIST Version.txt (
ECHO Version.txt is missing!
GOTO error
)
:: get the version and comment from Version.txt lines 2 and 3
SET RELEASE=%APPVEYOR_BUILD_VE... | Set default version to .yml file | Set default version to .yml file
| Batchfile | mit | j2jensen/CallMeMaybe |
e5b8015fc59ff6be0f2a7b9bed42e3f6a1d83867 | kokoro/windows/continuous-cmake.bat | kokoro/windows/continuous-cmake.bat | CD git/re2 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Debug -A x64 . || EXIT /B 1
cmake --build . --config Debug --clean-first || EXIT /B 1
ctest -C Debug --output-on-failure -E dfa^|exhaustive^|random || EXIT ... | CD git/re2 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Debug -G "Visual Studio 12 2013" -A x64 . || EXIT /B 1
cmake --build . --config Debug --clean-first || EXIT /B 1
ctest -C Debug --output-on-failure -E dfa^|exhaustive^|random ... | Use MSVC 2013 for continuous integration. | Use MSVC 2013 for continuous integration.
We claim to support it, so we should ensure
that we actually support it. ;)
Fixes #112.
Change-Id: Ia1fd23eb0e6f83ead453306be0b203782d62fd1c
Reviewed-on: https://code-review.googlesource.com/7492
Reviewed-by: Paul Wankadia <62d4e38bb1380f055ec4b899baa75e52af09c5f7@google.com... | Batchfile | bsd-3-clause | google/re2,google/re2,google/re2,google/re2,google/re2 |
74d7c9ed7f01114cbdae8168013b47b89aaab18a | runbuild.cmd | runbuild.cmd | @@@ setlocal
@@@ for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set msbuild=%windir%\Microsoft.NET\Framework\%%i\msbuild.exe
@@@ if not defined msbuild (echo MSBuild.exe not found>&2 & exit /b 42)
@@@ if defined msbuild "%msbuild%" ... | @echo off
setlocal
for %%a in (%*) do echo "%%a" | findstr /C:"mono">nul && set buildtool=xbuild.bat
if not defined buildtool for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set buildtool=%windir%\Microsoft.NET\Framework\%%i\msbuild.... | Build using xbuild on Windows for mono | Build using xbuild on Windows for mono
| Batchfile | mit | ChrisMaddock/nunit,jeremymeng/nunit,jhamm/nunit,ggeurts/nunit,jeremymeng/nunit,jadarnel27/nunit,jadarnel27/nunit,ArsenShnurkov/nunit,nunit/nunit,agray/nunit,Suremaker/nunit,akoeplinger/nunit,elbaloo/nunit,cPetru/nunit-params,pcalin/nunit,appel1/nunit,passaro/nunit,ArsenShnurkov/nunit,JohanO/nunit,jnm2/nunit,pcalin/nuni... |
e7f7a6dc3c610a4efdee592b49491217fc237184 | .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.
set current_path=%cd%
buildkite-agent.exe artifact download "installer/*.exe... | @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.
set current_path=%cd%
buildkite-agent.exe artifact download "installer/*.exe... | Fix installer uploaded artifact filename. | Fix installer uploaded artifact filename.
| Batchfile | mit | lyw07/kolibri,benjaoming/kolibri,jonboiser/kolibri,benjaoming/kolibri,learningequality/kolibri,DXCanas/kolibri,benjaoming/kolibri,jonboiser/kolibri,learningequality/kolibri,mrpau/kolibri,indirectlylit/kolibri,indirectlylit/kolibri,mrpau/kolibri,DXCanas/kolibri,indirectlylit/kolibri,jonboiser/kolibri,mrpau/kolibri,lyw07... |
b6812c5f48220b78904470dd8ba224372634a155 | build/windows/checkout-banshee.bat | build/windows/checkout-banshee.bat | REM This script will checkout Banshee from git (and a few submodules that are needed).
REM It will result in a banshee/ directory under where it's launched from.
REM See banshee\build\windows\README.txt for more information
REM (this file is tracked in version control at: http://git.gnome.org/browse/banshee/plain/build... | REM This script will checkout Banshee from git (and a few submodules that are needed).
REM It will result in a banshee/ directory under where it's launched from.
REM See banshee\build\windows\README.txt for more information
REM (this file is tracked in version control at: http://git.gnome.org/browse/banshee/plain/build... | Clean output of the checkout script | windows: Clean output of the checkout script
Don't echo the commands that are run, and don't print the error message
if everything worked.
| Batchfile | mit | babycaseny/banshee,GNOME/banshee,stsundermann/banshee,stsundermann/banshee,Dynalon/banshee-osx,GNOME/banshee,arfbtwn/banshee,ixfalia/banshee,Carbenium/banshee,ixfalia/banshee,arfbtwn/banshee,dufoli/banshee,dufoli/banshee,mono-soc-2011/banshee,stsundermann/banshee,Dynalon/banshee-osx,Dynalon/banshee-osx,Carbenium/banshe... |
2cf219dc85366eceb308321192349385b296c788 | 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/185e757b03239f556e73bead91b261f5fe3c8004
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/3076c2ce36a3e11a71ea092098a40b11cb55d548
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update to kuduscript version 0.1.7 | Update to kuduscript version 0.1.7
| Batchfile | apache-2.0 | dev-enthusiast/kudu,kali786516/kudu,kenegozi/kudu,kali786516/kudu,shrimpy/kudu,sitereactor/kudu,projectkudu/kudu,badescuga/kudu,badescuga/kudu,mauricionr/kudu,juvchan/kudu,juoni/kudu,barnyp/kudu,shibayan/kudu,juvchan/kudu,uQr/kudu,oliver-feng/kudu,puneet-gupta/kudu,chrisrpatterson/kudu,projectkudu/kudu,shibayan/kudu,ju... |
835f1d5a28584e18dfa0a03aa121f251570a81ae | run_tests.cmd | run_tests.cmd | @echo off
set PYTHON=%~1
set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
python -m pytest
python -m flake8
| set PYTHON=%~1
set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
pytest
flake8
| Use pytest and flake8 commands. | Use pytest and flake8 commands. | Batchfile | mit | jonlabelle/SublimeJsPrettier,jonlabelle/SublimeJsPrettier |
09184318cb6302041a219603b61a6824fdc4a322 | bin/append.bat | bin/append.bat | if "%ACC%" == "" goto emptyacc
if "%SEPARATOR%" == "" goto noseparator
set ACC=%ACC%%SEPARATOR%%1
goto end
:noseparator
set ACC=%ACC% %1
goto end
:emptyacc
set ACC=%1
goto end
:end | if not defined ACC goto emptyacc
if "%SEPARATOR%" == "" goto noseparator
set ACC=%ACC%%SEPARATOR%%1
goto end
:noseparator
set ACC=%ACC% %1
goto end
:emptyacc
set ACC=%1
goto end
:end | Support = signs in accumulator. | Support = signs in accumulator.
| Batchfile | apache-2.0 | jagguli/intellij-community,ahb0327/intellij-community,Distrotech/intellij-community,da1z/intellij-community,gnuhub/intellij-community,FHannes/intellij-community,lucafavatella/intellij-community,samthor/intellij-community,FHannes/intellij-community,salguarnieri/intellij-community,consulo/consulo,diorcety/intellij-commun... |
a7b8470883772d1014927ec2b0e22f7c07521db7 | zephir.bat | zephir.bat | @echo off
REM This file is part of the Zephir.
REM
REM (c) Zephir Team <team@zephir-lang.com>
REM
REM For the full copyright and license information, please view the LICENSE
REM file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | @echo off
rem This file is part of the Zephir.
rem
rem (c) Zephir Team <team@zephir-lang.com>
rem
rem For the full copyright and license information, please view the LICENSE
rem file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | Correct code style for batch file | Correct code style for batch file
| Batchfile | mit | dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir |
bb3bed5515a084cdcf73266b43a81c658bb8a601 | create_IRIDA_Uploader_Installer.bat | create_IRIDA_Uploader_Installer.bat | C:\Python27\Scripts\pip.exe install -r requirements.txt --allow-external pypubsub
C:\Python27\Scripts\pip.exe install -r requirements-building.txt --allow-external pypubsub
cd iridaUploader/docs
C:\Python27\Scripts\sphinx-build -b html -d _build/doctrees . _build/html
echo. 2>_build/__init__.py
echo. 2>_build/html/__... | C:\Python27\Scripts\pip.exe install -r requirements.txt --allow-external pypubsub || exit /b
C:\Python27\Scripts\pip.exe install -r requirements-building.txt --allow-external pypubsub || exit /b
cd iridaUploader/docs || exit /b
C:\Python27\Scripts\sphinx-build -b html -d _build/doctrees . _build/html || exit /b
echo.... | Add a 'set -e'-like fail on command failure for batch script. | Add a 'set -e'-like fail on command failure for batch script.
Former-commit-id: 1bb3de4f7aab27c7069d97f43aa5ea73a901cea9 | Batchfile | apache-2.0 | phac-nml/irida-miseq-uploader,phac-nml/irida-miseq-uploader |
0d3325a6d10947de0b737b654c1768bd33a1c340 | script/add-key.cmd | script/add-key.cmd | openssl aes-256-cbc -k %ENCRYPTION_SECRET% -in .\build\resources\authenticode-signing-cert.p12.enc -out .\build\resources\authenticode-signing-cert.p12 -d -a
certutil -p %KEY_PASSWORD% -importpfx .\build\resources\authenticode-signing-cert.p12
| openssl aes-256-cbc -k %ENCRYPTION_SECRET% -in .\build\resources\authenticode-signing-cert.p12.enc -out .\build\resources\authenticode-signing-cert.p12 -d -a
certutil -p %KEY_PASSWORD% -user -importpfx .\build\resources\authenticode-signing-cert.p12 NoRoot
| Add key to user's store | Add key to user's store
| Batchfile | apache-2.0 | spark/particle-dev |
f733d31ca51717cf66dab27ddb6d2fbe4ee89639 | windows/nsis-installer/oq-server.bat | windows/nsis-installer/oq-server.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
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.commands webui... | @echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.commands webui... | Revert to sleep in oq-webui.bat | Revert to sleep in oq-webui.bat
| Batchfile | agpl-3.0 | gem/oq-installers,gem/oq-installers,gem/oq-nsis |
947fa900b10740f913cba4edbabcc8bf67b6355f | plus-f/release.bat | plus-f/release.bat | call ..\gradlew clean installDist
call "C:\Program Files\Java\jdk11\bin\jlink.exe" --verbose --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules java.base,java.desktop,java.logging,java.management,java.naming,java.sql,java.xml,jdk.unsupported --output build\install\plus-f\runtime
call "C:\Program ... | set JAVA_HOME="C:\Program Files\Java\jdk11"
call ..\gradlew clean installDist
call "C:\Program Files\Java\jdk11\bin\jlink.exe" --verbose --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules java.base,java.desktop,java.logging,java.management,java.naming,java.sql,java.xml,jdk.unsupported --output bu... | Set JAVA_HOME for Windows builds | Set JAVA_HOME for Windows builds
| Batchfile | mit | alangibson27/plus-f,alangibson27/plus-f,alangibson27/plus-f,alangibson27/plus-f |
9f73699ac4b61160c369942d5b99cbb091fceec7 | config/thisroot.bat | config/thisroot.bat | @echo off
rem Source this script to set up the ROOT build that this script is part of.
rem
rem Author: Axel Naumann, 10/07/2007
set OLDPATH=%CD%
set THIS=%0
set THIS=%THIS:~0,-12%.
cd /D %THIS%\..
set ROOTSYS=%CD%
cd /D %OLDPATH%
set PATH=%ROOTSYS%\bin;%PATH%
set OLDPATH=
set THIS=
| @echo off
rem Source this script to set up the ROOT build that this script is part of.
rem
rem Author: Axel Naumann, 10/07/2007
set OLDPATH=%CD%
set THIS=%0
set THIS=%THIS:~0,-12%.
cd /D %THIS%\..
set ROOTSYS=%CD%
cd /D %OLDPATH%
set PATH=%ROOTSYS%\bin;%PATH%
echo %PYTHONPATH%|find /i "%ROOTSYS%\bin">nul || set PYTHON... | Add also %ROOTSYS%\bin to PYTHONPATH if not already set | Add also %ROOTSYS%\bin to PYTHONPATH if not already set
| Batchfile | lgpl-2.1 | tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot |
e41b159a4adb9acce451fc205f4dd6146f755d8f | Source/C/Makefiles/NmakeSubdirs.bat | Source/C/Makefiles/NmakeSubdirs.bat | ## @file
#
# Copyright (c) 2007 - 2010, Intel Corporation
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensourc... | @REM ## @file
@REM #
@REM # Copyright (c) 2007 - 2010, Intel Corporation
@REM # All rights reserved. This program and the accompanying materials
@REM # are licensed and made available under the terms and conditions of the BSD License
@REM # which accompanies this distribution. The full text of the license may b... | Add @REM for windows BAT file comment | Add @REM for windows BAT file comment
git-svn-id: f3880c1fc5096ce2109c8aec392d8e07f619f417@1872 c2973edb-eda0-4c78-bc6a-9341b269661f
| Batchfile | bsd-2-clause | tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,tianocore/buildtools-BaseTools,tianocore/buildtools-BaseTools,tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,bitcrystal/buildtools-BaseTools |
89b9fb13d0a79109281a2289fa9f256682046469 | binding/create_binding_skeleton.cmd | binding/create_binding_skeleton.cmd | @echo off
SETLOCAL
SET ARGC=0
FOR %%x IN (%*) DO SET /A ARGC+=1
IF %ARGC% NEQ 2 (
echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase
exit /B 1
)
mvn archetype:generate -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -DarchetypeVe... | @echo off
SETLOCAL
SET ARGC=0
FOR %%x IN (%*) DO SET /A ARGC+=1
IF %ARGC% NEQ 2 (
echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase
exit /B 1
)
mvn archetype:generate -N -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -Darchetyp... | Add parameter -N (Do not recurse into sub-projects) to skeleton generation script for Windows. | Add parameter -N (Do not recurse into sub-projects) to skeleton
generation script for Windows.
Signed-off-by: Dancho Penev <37e475d111572792472c8fad744ee4c4e32f000f@hotmail.com> | Batchfile | epl-1.0 | Snickermicker/smarthome,dvanherbergen/smarthome,vilchev/eclipse-smarthome,AchimHentschel/smarthome,kartben/smarthome,BenediktNiehues/smarthome,phxql/smarthome,phxql/smarthome,monnimeter/smarthome,iivalchev/smarthome,SeelabFhdo/smarthome,marinmitev/smarthome,shry15harsh/smarthome,msiegele/smarthome,kdavis-mozilla/smarth... |
668100cd08427c5bc45eebb37e6fefd0f3963f14 | test-recipes/metadata/source_svn/bld.bat | test-recipes/metadata/source_svn/bld.bat | if not exist trunk exit 1
cd trunk
svn info
if errorlevel 1 exit 1
for /f "delims=" %%i in ('svn info | grep "Revision"') do set svnrev=%%i
if not svnrev=="Revision: 1157" exit 1
| if not exist trunk exit 1
cd trunk
svn info
if errorlevel 1 exit 1
for /f "delims=" %%i in ('svn info ^| grep "Revision"') do set svnrev=%%i
if errorlevel 1 exit 1
echo %svnrev%
if not "%svnrev%"=="Revision: 1157" exit 1
| Fix source_svn test recipe on Windows | Fix source_svn test recipe on Windows
| Batchfile | bsd-3-clause | shastings517/conda-build,frol/conda-build,ilastik/conda-build,dan-blanchard/conda-build,frol/conda-build,ilastik/conda-build,sandhujasmine/conda-build,mwcraig/conda-build,mwcraig/conda-build,rmcgibbo/conda-build,takluyver/conda-build,frol/conda-build,sandhujasmine/conda-build,rmcgibbo/conda-build,takluyver/conda-build,... |
4e2dba26d2a8ac260c52c81c63a887569b5d92fc | dev/zip/scalive.bat | dev/zip/scalive.bat | @set JAVA_OPTS=-Djava.awt.headless=true
@set ROOT_DIR=%~dp0
@cd "%ROOT_DIR%"
@set CLASS_PATH="%ROOT_DIR%\*;."
@java %JAVA_OPTS% -cp %CLASS_PATH% scalive.AgentLoader %ROOT_DIR% %*
| @echo off
set JAVA_OPTS=-Djava.awt.headless=true
set ROOT_DIR=%~dp0
cd "%ROOT_DIR%"
set CLASS_PATH="%ROOT_DIR%\*;."
java %JAVA_OPTS% -cp %CLASS_PATH% scalive.AgentLoader %ROOT_DIR% %*
| Use "@echo off" for brevity | Use "@echo off" for brevity
| Batchfile | mit | xitrum-framework/scalive,xitrum-framework/scalive |
f568b9beb21f7a6c7e3602fb2f0f6c6a59b4ef93 | recipes/ansible-core/bld.bat | recipes/ansible-core/bld.bat | mklink ./lib/ansible/release.py ./lib/ansible/ansible_release.py
%PYTHON% -m pip install . -vv
| mklink build/lib/ansible/ansible_release.py build/lib/ansible/release.py
%PYTHON% -m pip install . -vv
| Fix order of arguments in mklink and prefix path with build/ | Fix order of arguments in mklink and prefix path with build/
| Batchfile | bsd-3-clause | johanneskoester/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,ReimarB... |
33d0a92d4b34b423246c88b8ca4b3ebfd121b0a3 | build.bat | build.bat | @echo off
echo building prefuse...
if "%JAVA_HOME%" == "" goto error
set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\lib\ant.jar;%CLASSPATH%
set ANT_HOME=./lib
echo ... using classpath %LOCALCLASSPATH%
%JAVA_HOME%\bin\java.exe -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main ... | @echo off
echo building prefuse...
if "%JAVA_HOME%" == "" goto error
set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\lib\ant.jar;%CLASSPATH%
set ANT_HOME=./lib
echo ... using classpath %LOCALCLASSPATH%
"%JAVA_HOME%\bin\java.exe" -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Mai... | Allow spaces in JAVA_HOME directory | Allow spaces in JAVA_HOME directory
| Batchfile | bsd-3-clause | javaprogbinf2015/Lab8,giacomovagni/Prefuse,Vitor95/epocaRecurso,Vitor95/epocaRecurso,javaprogbinf2015/Lab8,effrafax/Prefux,javaprogbinf2015/Lab8,jchildress/Prefux,effrafax/Prefux,Vitor95/epocaRecurso,giacomovagni/Prefuse,jchildress/Prefux,giacomovagni/Prefuse |
b6c77e0210fa747b8fcbb7fc8762d6a4ab85b4b7 | config/pidkill.bat | config/pidkill.bat | echo off
REM leave a pid file so that a non-DC process
REM like configd can be notified for shutdown
copy /y nul > %cd%\.pid%1
REM set this sleep value to be at least twice
REM as long as the QMF_CONFIGD_WIN_INTERVAL
set cntr=0
:LoopStart
IF NOT EXIST %cd%\.pid%1 Goto EndClean
ping 127.0.0.1 -n 1 -w 1000 > nul
IF %... | echo off
REM leave a pid file so that a non-DC process
REM like configd can be notified for shutdown
copy /y nul > %cd%\.pid%1
REM set this sleep value to be at least twice
REM as long as the QMF_CONFIGD_WIN_INTERVAL
set cntr=0
:LoopStart
IF NOT EXIST %cd%\.pid%1 Goto EndClean
ping 1.1.1.1 -n 1 -w 1000 > nul
IF %cn... | Update for ping wait to use invalid address so timeouts are reached. | Update for ping wait to use invalid address so timeouts are reached.
| Batchfile | apache-2.0 | htcondor/configuration_tools,htcondor/configuration_tools,htcondor/configuration_tools |
0da8d6f6d7ee851e8ae6d3b4a0711381d3bbe844 | run.cmd | run.cmd | @if "%_echo%" neq "on" echo off
setlocal
if defined VisualStudioVersion goto :Run
set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
if exist %_VSWHERE% (
for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
)
if not ... | @if "%_echo%" neq "on" echo off
setlocal
if defined VisualStudioVersion goto :Run
set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
if exist %_VSWHERE% (
for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
)
if not ... | Change to current directory after calling VSDevCmd.bat | Change to current directory after calling VSDevCmd.bat
VSDevCmd.bat switches to a user directory so we need to ensure
we are switched back to the root of the repo in order for the
commands that take relative paths to projects to work. This will
allow you to build the repo from a clean cmd prompt again (still
requires ... | Batchfile | mit | rakeshsinghranchi/core-setup,rakeshsinghranchi/core-setup,zamont/core-setup,crummel/dotnet_core-setup,MichaelSimons/core-setup,weshaggard/core-setup,wtgodbe/core-setup,chcosta/core-setup,zamont/core-setup,wtgodbe/core-setup,zamont/core-setup,ericstj/core-setup,chcosta/core-setup,ericstj/core-setup,weshaggard/core-setup... |
97eddbab17767d1c22c30ca29fa1424d6266034d | bootstrap.cmd | bootstrap.cmd | @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
NuGet.exe install ILRepack.MSBuild.Task -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
| @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.0 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | Use ILRepack.MSBuild.Task from sympa public myget feed | Use ILRepack.MSBuild.Task from sympa public myget feed
| Batchfile | bsd-2-clause | loresoft/msbuildtasks |
9a1b5e500ace17b52d8f4ae9a08442f0930a2ad9 | init.bat | init.bat | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul$G$G$*
doskey pwd=echo %CD%
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
... | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul$G$G$*
doskey pwd=echo %CD%
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
... | Make sure we can exit cmd when we start code | Make sure we can exit cmd when we start code
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
647b53369d610f3ba7ce275596b91c2aab5471f8 | v2/bin/sdownload.cmd | v2/bin/sdownload.cmd | @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
| @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\jsr173_api.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\resolver.jar
java -classpath %cp% o... | Fix for sDownload tool. Added correct v2 classpath entries. Submitted by: Jacob Danner | Fix for sDownload tool. Added correct v2 classpath entries.
Submitted by: Jacob Danner
git-svn-id: 297cb4147f50b389680bb5ad136787e97b9148ae@111095 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | apache/xmlbeans,apache/xmlbeans,apache/xmlbeans |
f280264a6237ea31b27c559a9af4c9d7124a3eb7 | buildTemplatesNuget.cmd | buildTemplatesNuget.cmd | SET PACKAGE_VERSION=3.0.1
cd .\src\Templates
nuget pack -Version %PACKAGE_VERSION%
dotnet new -u GeneticSharp.Templates
dotnet new -i GeneticSharp.Templates.%PACKAGE_VERSION%.nupkg
echo GeneticSharpTspBlazorApp
dotnet new GeneticSharpTspBlazorApp -n TspBlazorApp -o TspBlazorApp
echo GeneticSharpConsoleApp
dotnet ne... | SET PACKAGE_VERSION=3.0.0
cd .\src\Templates
nuget pack -Version %PACKAGE_VERSION%
dotnet new -u GeneticSharp.Templates
dotnet new -i GeneticSharp.Templates.%PACKAGE_VERSION%.nupkg
echo GeneticSharpTspBlazorApp
dotnet new GeneticSharpTspBlazorApp -n TspBlazorApp -o TspBlazorApp
echo GeneticSharpConsoleApp
dotnet ne... | Fix the nuget templates version | Fix the nuget templates version
| Batchfile | mit | giacomelli/GeneticSharp,giacomelli/GeneticSharp,giacomelli/GeneticSharp,giacomelli/GeneticSharp |
809da20100bbea63ce7f1582166287c9017c0c43 | test/windows.cgi.cmd | test/windows.cgi.cmd | @echo off
echo HTTP/1.1 200 OK
echo Connection: close
echo.
echo CGI test:
echo.
set
| @echo off
echo HTTP/1.1 200 OK
echo Connection: close
echo.
echo CGI test:
echo.
set
| Fix up batch script line endings | Fix up batch script line endings
The new .gitattributes solve issues with Windows specific files
| Batchfile | mit | GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver |
5031ece55a83455acbe7a76ab3b44204d8de60ad | win-release-build.bat | win-release-build.bat | md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CONFIGURATION_TYPES=Release -G "Visual Studio 14 2015" ..
devenv musicgame.sln /build
pause | md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CONFIGURATION_TYPES=Release -G "Visual Studio 14 2015" ..
devenv musicgame.sln /build
cd ..
pause
| Fix slight issue with the windows build script not returning to the original folder it was invoked from. | Fix slight issue with the windows build script not returning to the original folder it was invoked from.
| Batchfile | unknown | OpenRhythm/OpenRhythm,mdsitton/musicgame,OpenRhythm/OpenRhythm,mdsitton/musicgame,OpenRhythm/OpenRhythm |
819e8b30b807aee7a7d0f504ea66a8c905042284 | devtools/cibuild.cmd | devtools/cibuild.cmd | cd /d "%~dp0"
cd ..
rmdir /s /q install
rmdir /s /q build
mkdir build
cd build
cmake .. -G "Visual Studio 12" "-DCMAKE_INSTALL_PREFIX=%WORKSPACE%\install" %*
cmake --build . --config Debug
cmake --build . --config RelWithDebInfo
cmake --build . --config RelWithDebInfo -- /p:RunCodeAnalysis=True
cmake --build . --config... | cd /d "%~dp0"
cd ..
rmdir /s /q install
rmdir /s /q build
mkdir build
cd build
cmake .. -G "Visual Studio 12" "-DCMAKE_INSTALL_PREFIX=%WORKSPACE%\install" %*
cmake --build . --config Debug
cmake --build . --config RelWithDebInfo
cmake --build . --config RelWithDebInfo --target INSTALL
cmake --build . --config RelWithD... | Change build order for CI. | Change build order for CI.
| Batchfile | apache-2.0 | d235j/OSVR-Core,godbyk/OSVR-Core,OSVR/OSVR-Core,Armada651/OSVR-Core,OSVR/OSVR-Core,godbyk/OSVR-Core,godbyk/OSVR-Core,leemichaelRazer/OSVR-Core,d235j/OSVR-Core,feilen/OSVR-Core,leemichaelRazer/OSVR-Core,d235j/OSVR-Core,OSVR/OSVR-Core,leemichaelRazer/OSVR-Core,OSVR/OSVR-Core,d235j/OSVR-Core,leemichaelRazer/OSVR-Core,godb... |
4faebf5bc53af61f1588f33eaae06cb97b39c89f | tgui/install_dependencies.bat | tgui/install_dependencies.bat | @echo off
echo node.js > 5.3.0 must be installed for this script to work.
echo If this script fails, try closing editors and running it again first.
echo Any warnings about optional dependencies can be safely ignored.
pause
REM Install Gulp
cmd /c npm install gulp-cli -g
REM Install tgui dependencies
cmd /c npm install... | @echo off
echo node.js 5.3.0 or newer must be installed for this script to work.
echo If this script fails, try closing editors and running it again first.
echo Any warnings about optional dependencies can be safely ignored.
pause
REM Install Gulp
cmd /c npm install gulp-cli -g
REM Install tgui dependencies
cmd /c npm ... | Fix message in install script | Fix message in install script
| Batchfile | agpl-3.0 | dannyy3566/FTL13,riftstation/riftstation,NicholasM10/-tg-station,lordpidey/-tg-station,coiax/-tg-station,neersighted/tgstation,CrAzYPiLoT-SS13/FTL13-1,ShizCalev/tgstation,JJRcop/tgstation,Fox-McCloud/-tg-station,TheVekter/-tg-station,Memendia/HippieStation,Kirill1243/-tg-station,vcordie/tgstation,Tacolizard/tgstation,M... |
ef0b5e7f2e3498cfae6f1c6a035cc44bac1b03ad | copy-files.cmd | copy-files.cmd | robocopy . ..\..\..\..\..\installer\windows\x64\packages\com.kryvosproject.kryvos\data\ /E
robocopy . Kryvos\ /E
| robocopy . ..\..\..\..\..\installer\windows\x64\packages\com.kryvosproject.kryvos\data\ /E
robocopy . Kryvos\ /E
exit 0
| Append exit 0 for AppVeyor copy script | Append exit 0 for AppVeyor copy script
| Batchfile | mit | adolby/Kryvos,adolby/Kryvos,adolby/Kryvos |
a844c8532e5c8c6bd155de81c24cba69577ba00b | ebtask_example.bat | ebtask_example.bat | set PYTHON=C:\Python27\python.exe
set BASE_DIR=[Your email-backup checkout]
set OUTPUT_DIR=[Directory to output archive]
set EMAIL=[Email address]
set PASSWORD=[Password (application specific password for gmail accounts)]
set IMAP=[IMAP server address]
%python% %BASE_DIR%\ebackup.py -e %EMAIL% -p %PASSWORD% -i %IMAP%... | set PYTHON=C:\Python27\python.exe
set BASE_DIR=[Your email-backup checkout]
set OUTPUT_DIR=[Directory to output archive]
set EMAIL=[Email address]
set PASSWORD=[Password (application specific password for gmail accounts)]
set IMAP=[IMAP server address]
%python% %BASE_DIR%\ebackup.py -e %EMAIL% -p %PASSWORD% -i %IMAP%... | Archive was being stored in wrong directory. | Archive was being stored in wrong directory.
| Batchfile | mit | thegoldenmule/email-backup,thegoldenmule/email-backup |
1aff0e254d3a3b109b8e19caee702dc0912d8532 | Build/nuget-restore.bat | Build/nuget-restore.bat | @echo off
SET ROOT=%~dp0..
SET NuGetExe=%ROOT%\Tools\NuGet.exe
SET SolutionFile=%ROOT%\UnitsNet.sln
%NuGetExe% restore %SolutionFile% | @echo off
SET ROOT=%~dp0..
SET NuGetExe=%ROOT%\Tools\NuGet.exe
SET SolutionFile=%ROOT%\UnitsNet.2015.sln
%NuGetExe% restore %SolutionFile% | Update references to rename solution file | Update references to rename solution file
| Batchfile | mit | anjdreas/UnitsNet,Tirael/UnitsNet,BrandonLWhite/UnitsNet,BrandonLWhite/UnitsNet,anjdreas/UnitsNet,BoGrevyDynatest/UnitsNet,neutmute/UnitsNet |
e86e01d15df619f0cc07c3160ad92a5018fae730 | server/script-templates/jruby.bat | server/script-templates/jruby.bat | @echo off
<% print environment.collect { entry -> """set ${entry.key}=\"${entry.value}\"""" }.join("\n") %>
rem add jruby and rubygem binstubs to PATH
set PATH="${additionalJRubyPaths.join(File.pathSeparator)};%PATH%"
"${javaExecutable}" ^
<% print jvmArgs.collect { entry -> $/ "${entry}"/$ }.join(" ^\n") %> ^
<% pr... | @echo off
<% print environment.collect { entry -> """set \"${entry.key}=${entry.value}\"""" }.join("\n") %>
rem add jruby and rubygem binstubs to PATH
set "PATH=${additionalJRubyPaths.join(File.pathSeparator)};%PATH%"
"${javaExecutable}" ^
<% print jvmArgs.collect { entry -> $/ "${entry}"/$ }.join(" ^\n") %> ^
<% pr... | Fix env var quoting on Windows | Fix env var quoting on Windows
| Batchfile | apache-2.0 | ketan/gocd,Skarlso/gocd,gocd/gocd,Skarlso/gocd,ketan/gocd,ketan/gocd,ketan/gocd,gocd/gocd,gocd/gocd,gocd/gocd,Skarlso/gocd,Skarlso/gocd,gocd/gocd,Skarlso/gocd,ketan/gocd,Skarlso/gocd,gocd/gocd,ketan/gocd |
fc842d4727f5d1b2a58cbf1e15a5fb7a84f4ab4c | scripts/compile-dotnet-assemblies.bat | scripts/compile-dotnet-assemblies.bat | ::http://support.microsoft.com/kb/2570538
::http://robrelyea.wordpress.com/2007/07/13/may-be-helpful-ngen-exe-executequeueditems/
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe executequeu... | ::http://support.microsoft.com/kb/2570538
::http://robrelyea.wordpress.com/2007/07/13/may-be-helpful-ngen-exe-executequeueditems/
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
if exist "%windir%\microsoft.net\framework\v4.0.30319\ngen.exe" (
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /qu... | Check whether ngen.exe exists and execute only if it exists. Some versions of Windows 7 (e.g. without updates) do not include .NET Framework 4.0 by default. | Check whether ngen.exe exists and execute only if it exists. Some versions of Windows 7 (e.g. without updates) do not include .NET Framework 4.0 by default.
| Batchfile | mit | TaylorMonacelli/packer-windows,TheBigBear/packer-windows-joefitzgerald,floradu88/packer-windows,tsew/packer-windows,joefitzgerald/packer-windows,bigwave/packer-windows |
546f3c77f9ffeaf5876568442ab914edbb9dca61 | src/FolderDiffPowerShell/FolderDiff.bat | src/FolderDiffPowerShell/FolderDiff.bat | @ECHO OFF
SET CurrentPath=%~dp0
SET ReferenceFolder=%1
SET DifferenceFolder=%2
SET SupportLongFilenames=%3
IF [%3]==[] SET SupportLongFilenames=$False
ECHO.
PowerShell.exe -NoProfile -ExecutionPolicy ByPass -Command "%CurrentPath%FolderDiff.ps1 %ReferenceFolder% %DifferenceFolder% %SupportLongFilenames% | ForEac... | @ECHO OFF
SET CurrentPath=%~dp0
SET ReferenceFolder=%1
SET DifferenceFolder=%2
SET SupportLongFilenames=%3
IF [%3]==[] SET SupportLongFilenames=$False
ECHO.
PowerShell.exe ^
-NoProfile ^
-ExecutionPolicy ByPass ^
-Command ^
"%CurrentPath%FolderDiff.ps1 %ReferenceFolder% %DifferenceFolder% ... | Make file more readable by shortening lines. | Make file more readable by shortening lines. | Batchfile | bsd-3-clause | sietsevdschoot/FolderDiff |
e83e66c6848e85479d6afeabaa58dfc601622e20 | contrib/packaging-python/conda/bld.bat | contrib/packaging-python/conda/bld.bat | REM mkdir build
REM cd build
REM Remove dot from PY_VER for use in library name
set MY_PY_VER=%PY_VER:.=%
REM Configure step
cmake -G "%CMAKE_GENERATOR%" ^
-DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^
-DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ... | REM To avoid building in work/ alongside the source. Rather build in work/build/
mkdir build
cd build
REM Remove dot from PY_VER for use in library name
set MY_PY_VER=%PY_VER:.=%
REM Configure step
cmake -G "%CMAKE_GENERATOR%" ^
-DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ... | Change CI build dir in appeyor | Change CI build dir in appeyor
| Batchfile | bsd-3-clause | projectchrono/chrono,rserban/chrono,projectchrono/chrono,projectchrono/chrono,rserban/chrono,dariomangoni/chrono,Milad-Rakhsha/chrono,armanpazouki/chrono,dariomangoni/chrono,armanpazouki/chrono,dariomangoni/chrono,dariomangoni/chrono,rserban/chrono,armanpazouki/chrono,projectchrono/chrono,dariomangoni/chrono,projectchr... |
61c0c7e372befa2d724081bc23fd540d892b459d | ci/tasks/cats-windows.bat | ci/tasks/cats-windows.bat | SET GOPATH=%CD%\cf-release-repo
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%CD%\cf-release-repo\bin;%PATH%
SET PATH=C:\Program Files\7-Zip;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%
SET /... | SET GOPATH=%CD%\cf-release-repo
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%CD%\cf-release-repo\bin;%PATH%
SET PATH=C:\Program Files\GnuWin32\bin;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%... | Revert "swap GnuWin32 with 7zip, cuz sourceforge is broke" | Revert "swap GnuWin32 with 7zip, cuz sourceforge is broke"
This reverts commit 42237d6c20c650f9803acbd496df30d8d9e0b8d6.
| Batchfile | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
c84b42177b331c4e2c5c04e07c0167b0db7eb6bb | Containerizer/make.bat | Containerizer/make.bat | :: msbuild must be in path
SET PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework64\v4.0.30319
where msbuild
if errorLevel 1 ( echo "msbuild was not found on PATH" && exit /b 1 )
git submodule update --init --recursive
cd IronFrame
call build.bat || exit /b 1
cd ..
rmdir /S /Q packages
bin\nuget restore || exit /b 1
MSBuil... | :: msbuild must be in path
SET PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework64\v4.0.30319
where msbuild
if errorLevel 1 ( echo "msbuild was not found on PATH" && exit /b 1 )
git submodule update --init --recursive
cd IronFrame
call build.bat build || exit /b 1
cd ..
rmdir /S /Q packages
bin\nuget restore || exit /b 1
... | Build Ironframe in DiegoWindowsMSI on appveyor instead of testing it (currently freezes) | Build Ironframe in DiegoWindowsMSI on appveyor instead of testing it (currently freezes)
See #93622840
| Batchfile | apache-2.0 | cloudfoundry/garden-windows,cloudfoundry/garden-windows,cloudfoundry-incubator/garden-windows,stefanschneider/garden-windows,stefanschneider/garden-windows,cloudfoundry/garden-windows,cloudfoundry-incubator/garden-windows,cloudfoundry-incubator/garden-windows,stefanschneider/garden-windows |
5e815e8686b630a0078da7af4b010c61cb2005f0 | syzygy/run_all_tests.bat | syzygy/run_all_tests.bat | @echo off
:: Copyright 2009 Google Inc. All Rights Reserved.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by ... | @echo off
:: Copyright 2009 Google Inc. All Rights Reserved.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by ... | Fix run_all_test script to avoid git-cl variable clashes. | Fix run_all_test script to avoid git-cl variable clashes.
A recent update to git-cl seems to use the same variable
SCRIPT, etc...
After running run_all_tests, the git-cl script won't work until you unset
the variables or close your shell.
Unsetting the variable is enough, but it's safer to use a new name in
case the... | Batchfile | apache-2.0 | Eloston/syzygy,google/syzygy,google/syzygy,wangming28/syzygy,supriyantomaftuh/syzygy,supriyantomaftuh/syzygy,pombreda/syzygy,ericmckean/syzygy,ericmckean/syzygy,pombreda/syzygy,wangming28/syzygy,pombreda/syzygy,wangming28/syzygy,Eloston/syzygy,sebmarchand/syzygy,wangming28/syzygy,supriyantomaftuh/syzygy,sebmarchand/syz... |
5b02ad156fefdb7a937b9ed1a76986e6c278056b | doc/screenplay/demo-3-bach.bat | doc/screenplay/demo-3-bach.bat | @echo off
cls
echo.
echo BEGIN OF DEMO 3: Bach.java
pause > nul
if exist demo rmdir /q/s demo
mkdir demo
cd demo
mkdir src\demo
echo ______
echo Step 1: Declare demo module: src\demo\module-info.java
pause > nul
(
echo module demo {}
)>"src\demo\module-info.java"
echo.
type src\demo\module-info.java
pause > nul
echo... | @echo off
cls
echo.
echo BEGIN OF DEMO 3: Bach.java
pause > nul
if exist demo rmdir /q/s demo
mkdir demo
cd demo
mkdir src\demo
echo ______
echo Step 1: Declare demo module: src\demo\module-info.java
pause > nul
(
echo module demo {}
)>"src\demo\module-info.java"
echo.
type src\demo\module-info.java
pause > nul
echo... | Update arguments used in screenplay demo 3 | Update arguments used in screenplay demo 3
| Batchfile | mit | sormuras/bach,sormuras/bach |
fad834821987c1754b62ae6b571ab4e8f568599c | Tools/AppVeyor/Install.cmd | Tools/AppVeyor/Install.cmd | @echo off
if not exist "C:\Program Files (x86)\gs" powershell -ExecutionPolicy Unrestricted ..\Scripts\AppVeyor\InstallGhostscript.ps1
if %errorlevel% neq 0 exit /b %errorlevel%
set LIBDIR=C:\Magick.NET.libs
if exist %LIBDIR% goto done
echo Downloading .lib files
appveyor DownloadFile https://www.dropbox.com/sh/5m3z... | @echo off
if not exist "C:\Program Files (x86)\gs" powershell -ExecutionPolicy Unrestricted ..\Scripts\AppVeyor\InstallGhostscript.ps1
if %errorlevel% neq 0 exit /b %errorlevel%
set LIBDIR=C:\Magick.NET.libs
if exist %LIBDIR% goto done
echo Downloading .lib files
appveyor DownloadFile https://www.dropbox.com/sh/5m3z... | Revert dotnet restore because it did not fix the AnyCPU build. | Revert dotnet restore because it did not fix the AnyCPU build.
| Batchfile | apache-2.0 | dlemstra/Magick.NET,dlemstra/Magick.NET |
6c3e7ce76cf72aa2985ac839fdc48890b6852679 | 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 | rogers0/namebench,google/namebench,google/namebench,protron/namebench,google/namebench |
6ef57d4462f0b09ed8d0f92411703f2c7b5a2f74 | recipes/curl/bld.bat | recipes/curl/bld.bat | cd winbuild
if %ARCH% == 32 (
set ARCH_STRING=x86
) else (
set ARCH_STRING=x64
)
REM This is implicitly using WinSSL. See Makefile.vc for more info.
nmake /f Makefile.vc mode=dll VC=%VS_MAJOR:"=% WITH_DEVEL=%LIBRARY_PREFIX% ^
WITH_ZLIB=dll DEBUG=no ENABLE_IDN=no MACHINE=%ARCH_STRING%
robocopy ..\bu... | cd winbuild
if %ARCH% == 32 (
set ARCH_STRING=x86
) else (
set ARCH_STRING=x64
)
REM This is implicitly using WinSSL. See Makefile.vc for more info.
nmake /f Makefile.vc mode=dll VC=%VS_MAJOR:"=% WITH_DEVEL=%LIBRARY_PREFIX% ^
WITH_ZLIB=dll DEBUG=no ENABLE_IDN=no MACHINE=%ARCH_STRING%
if %ERRORLEVEL%... | Address exit codes on Windows. | curl: Address exit codes on Windows.
| Batchfile | bsd-3-clause | hadim/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,arokem/staged-recipes,benvandyke/staged-recipes,jcb91/staged-recipes,rvalieris/staged-recipes,mcs07/staged-recipes,planetarypy/staged-recipes,atedstone/staged-recipes,larray-project/staged-recipes,pstjohn/staged-recipes,jjhe... |
5a5b4250df21a4e6278371c557a0cb5b1887fd15 | contrib/appveyor-mingw.bat | contrib/appveyor-mingw.bat | rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.11.0\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_P... | rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.11.0\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_P... | Disable tests in Mingw builds | Appveyor: Disable tests in Mingw builds
With the move to Qt 5.11 the tests fail to run, disable for now.
| Batchfile | isc | equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt |
282c7fdd307889e39d7c42dea4b898f1890db054 | scripts/win-build.bat | scripts/win-build.bat | set SRC_DIR=%cd%\src
set DIST_DIR=%SRC_DIR%\dist
set BUILD_DIR=%SRC_DIR%\build
set OUT_DIR=%SRC_DIR%\bin
set MSI_TARGET_DIR=C:\jenkins\build\whid-x64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
cd
cd %SRC_DIR%
dir
echo on
rmdir /S /Q "%DIST_DIR%"
mkdir "%DIST_D... | set SRC_DIR=%cd%\src
set DIST_DIR=%SRC_DIR%\dist
set BUILD_DIR=%SRC_DIR%\build
set OUT_DIR=%SRC_DIR%\bin
set MSI_TARGET_DIR=C:\jenkins\build\whid-x64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
cd
cd %SRC_DIR%
dir
echo on
rmdir /S /Q "%DIST_DIR%"
mkdir "%DIST_D... | Use REN instead of MOVE as the latter has issues with long path | Use REN instead of MOVE as the latter has issues with long path
| Batchfile | mit | spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre |
1497768382b623c6b147ea4a126dd0b820e342d8 | projectCreator.bat | projectCreator.bat | echo off
set platformsFolder=platforms
set platformName=Visual
set folder=%platformsFolder%\%platformName%
if not exist %folder% (mkdir %folder%) | rem echo off
SET mypath=%~dp0
set platformsFolder=platforms
set platformName="Visual Studio 14"
set folder=%mypath%\%platformsFolder%\%platformName%
if not exist %folder% (mkdir %folder%)
cd %platformsFolder%
rem call cmake
cmake.exe .. -G%platformName%
cd %mypath%
pause | Create project for visual studio 14 | Create project for visual studio 14
| Batchfile | mit | aphilippe/AppLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/ClappLauncher |
b31738491246f6803d330a8b34cb66836831890f | MonetDB/NT/Mserver.bat | MonetDB/NT/Mserver.bat | @rem figure out the folder name
@set MONETDB=%~dp0
@rem remove the final backslash from the path
@set MONETDB=%MONETDB:~0,-1%
@rem extend the search path with our EXE and DLL folders
@rem we depend on pthreadVCE.dll having been copied to the lib folder
@set PATH=%MONETDB%\bin;%MONETDB%\lib;%PATH%
@rem start the real... | @echo off
rem figure out the folder name
set MONETDB=%~dp0
rem remove the final backslash from the path
set MONETDB=%MONETDB:~0,-1%
rem extend the search path with our EXE and DLL folders
rem we depend on pthreadVCE.dll having been copied to the lib folder
set PATH=%MONETDB%\bin;%MONETDB%\lib;%PATH%
set MONETDBFARM... | Put database and log files in Application Data folder instead of Program Files folder. | Put database and log files in Application Data folder instead of Program Files folder.
| Batchfile | mpl-2.0 | zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb |
c3ef86e43ad4b05f0c0fffd647e4f07a2026bacf | windows/scripts/add_systemstart_task.bat | windows/scripts/add_systemstart_task.bat | @echo off
TITLE Adding task to start KA Lite at system start
setlocal
for /f "tokens=4-6 delims=[.XP " %%i in ('ver') do set WIN_VERSION="%%i.%%j"
rem 5.1 and 5.2 are XP and Server 2003/64-bit XP
if %WIN_VERSION% LEQ "5.2" (
echo This feature is unavailable on this version of Windows.
pause
) else (... | @echo off
TITLE Adding task to start KA Lite at system start
setlocal
for /f "tokens=4-6 delims=[.XP " %%i in ('ver') do set WIN_VERSION="%%i.%%j"
rem 5.1 and 5.2 are XP and Server 2003/64-bit XP
if %WIN_VERSION% LEQ "5.2" (
echo This feature is unavailable on this version of Windows.
pause
) else (... | Create scheduled task as current user | Create scheduled task as current user
| Batchfile | mit | ruimalheiro/installers,learningequality/installers,benjaoming/installers,benjaoming/installers,mrpau/installers,mrpau/installers,learningequality/installers,learningequality/ka-lite-installers,benjaoming/installers,learningequality/installers,mrpau/installers,ruimalheiro/installers,learningequality/ka-lite-installers,l... |
4acb95c32d9f1ea2f7c2405b0708c30279304d3d | build.libgit2sharp.cmd | build.libgit2sharp.cmd | set FrameworkVersion=v4.0.30319
set FrameworkDir=%SystemRoot%\Microsoft.NET\Framework
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" CI-build.msbuild
exit /B %ERRORLEVEL% | SET BASEDIR=%~dp0
set FrameworkVersion=v4.0.30319
set FrameworkDir=%SystemRoot%\Microsoft.NET\Framework
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%BASEDIR%CI-build.msbuild"
exit /B %ERRORLEVEL% | Make build Windows command line launcher independent from the current working directory | Make build Windows command line launcher independent from the current working directory
| Batchfile | mit | psawey/libgit2sharp,jeffhostetler/public_libgit2sharp,dlsteuer/libgit2sharp,GeertvanHorrik/libgit2sharp,jamill/libgit2sharp,github/libgit2sharp,PKRoma/libgit2sharp,xoofx/libgit2sharp,vivekpradhanC/libgit2sharp,AArnott/libgit2sharp,AArnott/libgit2sharp,OidaTiftla/libgit2sharp,AMSadek/libgit2sharp,paulcbetts/libgit2sharp... |
c74962497616d0dacd89fd11cc25db4fbbe60637 | scripts/code.bat | scripts/code.bat | @echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Node modules
if not exist node_modules call yarn
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAM... | @echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Node modules
if not exist node_modules call yarn
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAM... | Install builtInExtensions on windows too | Install builtInExtensions on windows too
| Batchfile | mit | microsoft/vscode,DustinCampbell/vscode,Microsoft/vscode,eamodio/vscode,hoovercj/vscode,mjbvz/vscode,rishii7/vscode,0xmohit/vscode,eamodio/vscode,joaomoreno/vscode,eamodio/vscode,microsoft/vscode,cleidigh/vscode,the-ress/vscode,DustinCampbell/vscode,landonepps/vscode,joaomoreno/vscode,microlv/vscode,mjbvz/vscode,0xmohit... |
815c649679064eec970c1753a42d66a3f10d2255 | context-menu-disable-grepWin.bat | context-menu-disable-grepWin.bat | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=grepWin...
reg add "%registryRoot%\*\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\background\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\shell\%key%" /v LegacyDisa... | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=grepWin...
reg add "%registryRoot%\*\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\background\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\shell\%key%" /v LegacyDisa... | Add another key for grepWin to deactivate | Add another key for grepWin to deactivate
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
b8132e94810e245a87b6201667af311e753cb122 | bintrayupload.bat | bintrayupload.bat | @echo off
setlocal EnableDelayedExpansion
SET username=%1
SET apikey=%2
SET modules="MediaPlayer" "MediaPlayer-DASH" "MediaPlayer-GLES" "MediaPlayer-GLES-FlowAbs" "MediaPlayer-GLES-QrMarker"
FOR %%m in (%modules%) DO (
gradlew %%~m:clean %%~m:build %%~m:bintrayUpload -PbintrayUser=%username% -PbintrayKey=%apikey% -P... | @echo off
setlocal EnableDelayedExpansion
REM Uploading all modules at once (with one gradle command) does not work any more, so a separate command for each module must be issued
SET username=%1
SET apikey=%2
SET modules="MediaPlayer" "MediaPlayer-DASH" "MediaPlayer-GLES" "MediaPlayer-GLES-FlowAbs" "MediaPlayer-GLES-... | Add explanation to upload script | Add explanation to upload script
| Batchfile | apache-2.0 | protyposis/Spectaculum,protyposis/MediaPlayer-Extended,protyposis/MediaPlayer-Extended,protyposis/Spectaculum |
14232c16be208ab2602cff6d5fd2d00247da5ac4 | tasks/deploy_tasks.bat | tasks/deploy_tasks.bat | for /d %%d in (*) do (
xcopy /y /s %%d\deploy\* ..\checksystem\src\deploy\site\download\
)
xcopy /y /s ..\checksystem\download\* ..\checksystem\src\deploy\site\download\ | echo "Zipping backup.zip..."
pushd ..\checksystem\download\1b1baa8dbc68603a
%~dp0tools\zip backup.zip *.txt
popd
echo "Copying to site..."
for /d %%d in (*) do (
xcopy /y /s %%d\deploy\* ..\checksystem\src\deploy\site\download\
)
xcopy /y /s ..\checksystem\download\* ..\checksystem\src\deploy\site\download\
| Add zipping to tasks deploy process | Add zipping to tasks deploy process
| Batchfile | mit | HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015 |
8a0d72c692c9faeb21711c6bf8cee307275cef8f | Build.bat | Build.bat | SETLOCAL
SET Version=2.0.1
SET Prerelease=auto
CALL Tools\Build\FindVisualStudio.bat || GOTO Error0
REM Updating the build version.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. &&... | SETLOCAL
SET Version=2.0.1
SET Prerelease=auto
CALL Tools\Build\FindVisualStudio.bat || GOTO Error0
REM Updating the build version.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. &&... | Revert ChangeVersion on error in build script | Revert ChangeVersion on error in build script
| Batchfile | agpl-3.0 | Rhetos/SimpleSPRTEmail |
907fbce654b9b1e9ae98b534581f3d4f6580b3f1 | misc/env/user-example/win32/env.user.bat | misc/env/user-example/win32/env.user.bat | ECHO OFF
SET PATH=%PATH%;%PROJECT_HOME%\misc\env\user\win32\scripts
REM SET PATH=%PATH%;C:\Dev\vagrant\bin
ECHO User Environment Setup.
| ECHO OFF
SET PATH=%PATH%;%PROJECT_HOME%\misc\env\user\win32\scripts
REM SET PATH=%PATH%;C:\Dev\vagrant\bin
SET PATH=%PATH%;C:\cygwin64\bin
ECHO User Environment Setup.
| Add cygwin to env path for windows dev | Add cygwin to env path for windows dev
| Batchfile | mit | kaliatech/chimaney-voter-001,kaliatech/chimaney-voter-001 |
5c83a5287f433041a8f449946a494cea56961b38 | Build-UWP.bat | Build-UWP.bat | @echo off
set fdir="%ProgramFiles%\MSBuild\14.0\Bin"
if not exist %fdir% (
set fdir="%ProgramFiles(x86)%\MSBuild\14.0\Bin"
)
set msbuild=%fdir%\msbuild.exe
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Debug /t:Clean;Rebuild /p:OutputPath=..\bi... | @echo off
set fdir="%ProgramFiles%\MSBuild\14.0\Bin"
if not exist %fdir% (
set fdir="%ProgramFiles(x86)%\MSBuild\14.0\Bin"
)
set msbuild=%fdir%\msbuild.exe
set outDir=bin\UWP\Debug
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Debug /t:Clean;Re... | Build script fixes for UWP. | Build script fixes for UWP.
| Batchfile | apache-2.0 | wiyonoaten/WebSocket4Net,wiyonoaten/WebSocket4Net,wiyonoaten/WebSocket4Net |
c236736fab825702735907bb63262cba46a65a63 | Tools/VsDevCmd.cmd | Tools/VsDevCmd.cmd | @echo off
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studi... | @echo off
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studi... | Add support for the Preview version of Visual Studio. | Add support for the Preview version of Visual Studio.
| Batchfile | apache-2.0 | dlemstra/Magick.NET,dlemstra/Magick.NET |
6d89d4bc26df51cb6a83ec40d75264594ab827d9 | bin/shcol.bat | bin/shcol.bat | @python -m shcol %*
| :: Copyright (c) 2013-2015, Sebastian Linke
:: Released under the Simplified BSD license
:: (see LICENSE file for details).
:: A starter to invoke `shcol` from the Windows command-line.
@python -m shcol %*
| Add copyright note and description to Windows-specific starter. | Add copyright note and description to Windows-specific starter.
| Batchfile | bsd-2-clause | seblin/shcol |
3076ad918056fba7f3eb9a3cc4073af403b1e523 | bin/installOnWindows.bat | bin/installOnWindows.bat | @echo off
:: change directory to etherpad-lite root
cd /D "%~dp0\.."
echo Checking node version...
set check_version="if(['6','8'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad Lite requires v0.6.x or v0.8.x'); process.exit(1) }"
cmd /C node... | @echo off
:: change directory to etherpad-lite root
cd /D "%~dp0\.."
:: Is node installed?
cmd /C node -e "" || ( echo "Please install node.js ( http://nodejs.org )" && exit /B 1 )
echo _
echo Checking node version...
set check_version="if(['6','8'].indexOf(process.version.split('.')[1].toString()) === -1) { console... | Exit on install if node is not installed. | Exit on install if node is not installed.
| Batchfile | apache-2.0 | thomasrussellmurphy/etherpad-lite,morpheyesh/etherpad-lite,kenonelah/FactsheetPlugin,Gared/etherpad-lite,flavorjones/etherpad-lite-cf,KonradMil/etherpad-lite,indykish/etherpad-lite,0x46616c6b/etherpad-lite,leangjia/etherpad-lite,University-of-Potsdam-MM/etherpad-lite,ktdev/etherpad-lite,kenonelah/FactsheetPlugin,fourpl... |
f1c37f162ca90b8e4cfa7e1e43f34451f8a2fa3f | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 30 -clientVersion "0.57" -password "" -tcpLobby "149.202.51.185" 25565
@echo.
@echo Restarting server...
@echo.
goto start
| @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 30 -clientVersion "0.581" -password "" -tcpLobby "149.202.51.185" 25565
@echo.
@echo Restarting server...
@echo.
goto start
| Update example .bat with latest client version | [Nomad] Update example .bat with latest client version
| Batchfile | mit | Visagalis/Oxide,LaserHydra/Oxide,Nogrod/Oxide-2,LaserHydra/Oxide,Nogrod/Oxide-2,bawNg/Oxide,bawNg/Oxide,Visagalis/Oxide |
c7be52ebb97b4416f3c398aa6f9387770c1a53e2 | init.bat | init.bat | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul>>$*
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
doskey ..=cd ..
doskey ... | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul$G$G$*
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
doskey ..=cd ..
doske... | Use $G instead of > for doskey | Use $G instead of > for doskey
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
316ad0c2ea1b04f37576640b8e85d2b7725e5cb1 | recipes/sciplot/bld.bat | recipes/sciplot/bld.bat | mkdir build
cd build
REM Configure step
cmake .. ^
-GNinja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_EXE_LINKER_FLAGS="/FORCE:MULTIPLE"
REM Note: /FORCE:MULTIPLE is needed because of a bug in MSVC 14.1
REM in dealing wit... | mkdir build
cd build
REM Configure step
cmake .. ^
-GNinja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_EXE_LINKER_FLAGS="/FORCE:MULTIPLE"
REM Note: /FORCE:MULTIPLE is needed because of a bug in MSVC 14.1
REM in dealing wit... | Add note about test in windows | Add note about test in windows
| Batchfile | bsd-3-clause | patricksnape/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.