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 |
|---|---|---|---|---|---|---|---|---|---|
a5942d50d3d6e301301371e042d1c68793d6c99f | src/vm/jvm/runners/nqp.bat | src/vm/jvm/runners/nqp.bat | @java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar nqp %*
| @java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar;3rdparty/jline/jline-1.0.jar nqp %*
| Fix Windows runner to load jline JAR. | Fix Windows runner to load jline JAR.
| Batchfile | artistic-2.0 | cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp |
aadffa19c05715f281667e6a5fa4945881334978 | make.bat | make.bat | @rem if we don't have nmake in the path, we need to run setup
where nmake.exe 2> NUL
if %ERRORLEVEL% GTR 0 set need_setup=1
@rem if we don't have the include path set, we need to run setup
if not defined INCLUDE set need_setup=1
@rem run setup if we need to
if %need_setup% == 1 call "c:\Program Files (x86)\Microsoft ... | @rem if we don't have nmake in the path, we need to run setup
where nmake.exe 2> NUL
if %ERRORLEVEL% GTR 0 set need_setup=1
@rem if we don't have the include path set, we need to run setup
if not defined INCLUDE set need_setup=1
@rem run setup if we need to
if %need_setup% == 1 call "c:\Program Files (x86)\Microsoft ... | Adjust windows build script some more | Adjust windows build script some more
Make a guess about php and python locations
| Batchfile | mit | wez/watchman,nodakai/watchman,dhruvsinghal/watchman,dhruvsinghal/watchman,kwlzn/watchman,wez/watchman,nodakai/watchman,dhruvsinghal/watchman,kwlzn/watchman,dhruvsinghal/watchman,dhruvsinghal/watchman,dcolascione/laptop-watchman,nodakai/watchman,wez/watchman,kwlzn/watchman,wez/watchman,dcolascione/laptop-watchman,facebo... |
fc6c001adfd5545fb13af3659eaa55e858ace0bd | build.cmd | build.cmd | @echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS140COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015... | @echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS150COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015... | Build with VS 15 dev tools | Build with VS 15 dev tools
| Batchfile | mit | nkolev92/sdk,nkolev92/sdk |
7c361f76faffd9862483b986f90fbd8b924238aa | buildandtest.cmd | buildandtest.cmd | @ECHO OFF
REM Sample usages:
REM
REM Building and running tests
REM - build.libgit2sharp.cmd
REM
REM Building and identifying potential leaks while running tests
REM - build.libgit2sharp.cmd "LEAKS_IDENTIFYING"
SETLOCAL
SET EXTRADEFINE=%~1
where dotnet 1>nul 2>nul
IF ERRORLEVEL 1 (
ECHO Cannot find dotnet.e... | @ECHO OFF
REM Sample usages:
REM
REM Building and running tests
REM - buildandtest.cmd
REM
REM Building and identifying potential leaks while running tests
REM - buildandtest.cmd "LEAKS_IDENTIFYING"
SETLOCAL
SET EXTRADEFINE=%~1
where dotnet 1>nul 2>nul
IF ERRORLEVEL 1 (
ECHO Cannot find dotnet.exe. Run from... | Fix build script comments to match new name | Fix build script comments to match new name
| Batchfile | mit | libgit2/libgit2sharp,PKRoma/libgit2sharp,Zoxive/libgit2sharp,Zoxive/libgit2sharp |
a70d5e07f0bdaa5a347f362ecab45ccfeb004a94 | 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/Trimmer,jonlabelle/Trimmer |
b8f3115e163bf0104f45c9bc74b76e352b0ab084 | _OpenInAndroidStudio.bat | _OpenInAndroidStudio.bat | set projectPath=%~dp0
set androidStudioBin=A:\AndroidStudio\bin
rem Android Studio needs the project path without a trailing backslash
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
start "" /D "%androidStudioBin%" "studio.exe" "%projectPath%" | set projectPath=%~dp0
set androidStudioBin=A:\AndroidStudio\bin
rem Android Studio needs the project path without a trailing backslash
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
start "" /D "%androidStudioBin%" "studio64.exe" "%projectPath%" | Use studio64.exe instead of studio.exe | Use studio64.exe instead of studio.exe
| Batchfile | mit | berrnd/Time-Recording-Auto-Export-Tasker-Plugin,berrnd/Time-Recording-Auto-Export-Tasker-Plugin |
bb0bb221c6c296a80bc4b2a0c7de77ccefcfbf4c | windows/new-dev-system.cmd | windows/new-dev-system.cmd | @echo off
:: install chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
choco feature enable -n allowGlobalConfirmation
:: general apps
choco ... | @echo off
:: install chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
choco feature enable -n allowGlobalConfirmation
:: general apps
choco ... | Add gimp, paint.net and inconsolata | Add gimp, paint.net and inconsolata | Batchfile | unlicense | garethflowers/configs |
97bdb945aa78ef7d6e44e6fca1186a8b668c57fd | src/main/bin/unravl.bat | src/main/bin/unravl.bat | @echo off
Rem Run UnRAVL's main entry point.
Rem Command line arguments are UnRAVL script files to execute:
Rem unravl.bat script1.json script2.json script3.json
set UNRAVL_DIR=%~dp0..\..\..
set UNRAVL_JAR_DIR=%UNRAVL_DIR%\build\libs
set UNRAVL_LIB_DIR=%UNRAVL_DIR%\build\output\lib
java -Dapp.name=UnRAVL ^
-... | @echo off
Rem Run UnRAVL's main entry point.
Rem Command line arguments are UnRAVL script files to execute:
Rem unravl.bat script1.json script2.json script3.json
set UNRAVL_DIR=%~dp0..\..\..
set UNRAVL_JAR_DIR=%UNRAVL_DIR%\build\libs
set UNRAVL_LIB_DIR=%UNRAVL_DIR%\build\output\lib
java -Dapp.name=UnRAVL ^
-... | Remove quotes around file from Windows batch | Remove quotes around file from Windows batch
| Batchfile | apache-2.0 | DavidBiesack/unravl,DavidBiesack/unravl,sassoftware/unravl,sassoftware/unravl |
cdfa1e8a0bd8fa63812c7f214609aa71c6233abf | ci/jenkins.cmd | ci/jenkins.cmd | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET PYTHON_HOME=C:\Python36
SET DOTNET_HOME=C:\Program Files\dotnet
SET JAVA_HOME=C:\opt\oracle-jdk-8
SET GIT_HOME=C:\Program Files\Git
SET MAVEN... | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET PYTHON_HOME=C:\Python36
SET DOTNET_HOME=C:\Program Files\dotnet
SET JAVA_HOME=C:\opt\oracle-jdk-8
SET GIT_HOME=C:\Program Files\Git
SET MAVEN... | Use unique test out for each sample | Use unique test out for each sample
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
8ca1a57c2ea8ab34d47b9738ebf59729cc966c76 | workspace/_BuildRaceDetector.cmd | workspace/_BuildRaceDetector.cmd | @ECHO OFF
Setlocal EnableDelayedExpansion
CALL __Global.cmd
ECHO *** Go Build ***
ECHO Build compiles packages and dependencies with race condition detector
ECHO.
FOR /F "tokens=*" %%A IN (Packages.txt) DO (
SET PACKAGE=%%A
ECHO Building: !PACKAGE!
cd "%GOPATH%\src\!PACKAGE!"
go build -v -race %LDFLAGS% !PACKAGE!
E... | @ECHO OFF
Setlocal EnableDelayedExpansion
CALL __Global.cmd
ECHO *** Go Build ***
ECHO Build compiles packages and dependencies with race condition detector
ECHO.
FOR /F "tokens=*" %%A IN (Packages.txt) DO (
SET PACKAGE=%%A
ECHO Building: !PACKAGE!
cd "%GOPATH%\src\!PACKAGE!"
DEL /Q /F *.syso
go build -v -race %LDF... | Delete syso file before building with race detector | Delete syso file before building with race detector
It will throw an error otherwise
| Batchfile | mit | josephspurrier/golang-portable-windows |
cfdff1cdc2e689a8db7c3b147f9860ea4b660b79 | install_windows.bat | install_windows.bat | @echo off
cd src
pip install -r requirements.txt
pause
| @echo off
cd src
pip install -r requirements.txt
copy src\settings\local.py.example src\settings\local.py
pause
| Add local.py to windows install | Add local.py to windows install
| Batchfile | agpl-3.0 | hirunatan/estelcon_web,hirunatan/estelcon_web,hirunatan/estelcon_web,hirunatan/estelcon_web |
acb5f7d1ba69b3c93ba869f2ad70468c8a739323 | conda.recipe/bld.bat | conda.recipe/bld.bat | call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x64
set DISTUTILS_USE_SDK=1
set MSSdk=1
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
| if "%ARCH%" == "32" (set PLATFORM=x86) else (set PLATFORM=x64)
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM%
set DISTUTILS_USE_SDK=1
set MSSdk=1
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
| Fix conda build on 32-bit Windows | Fix conda build on 32-bit Windows
| Batchfile | mpl-2.0 | pikepdf/pikepdf,pikepdf/pikepdf,pikepdf/pikepdf |
ac658c08e56fd19da9d1639a404a5416b88639c8 | Tools/buildbot/buildmsi.bat | Tools/buildbot/buildmsi.bat | @rem Used by the buildbot "buildmsi" step.
cmd /c Tools\buildbot\external.bat
@rem build release versions of things
call "%VS90COMNTOOLS%vsvars32.bat"
if not exist ..\db-4.4.20\build_win32\release\libdb44s.lib (
vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
)
@rem build Python
cmd ... | @rem Used by the buildbot "buildmsi" step.
cmd /c Tools\buildbot\external.bat
@rem build release versions of things
call "%VS90COMNTOOLS%vsvars32.bat"
@rem build Python
cmd /q/c Tools\buildbot\kill_python.bat
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
@rem build the documentation
bash.exe -c 'cd Doc;make PY... | Remove the building of Berkeley DB step; _bsddb44.vcproj takes care of this for us now. | Remove the building of Berkeley DB step; _bsddb44.vcproj takes care of this for us now.
| Batchfile | mit | sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator |
60d4efcdafe841ddb8f4e0958195fb51ebf4f1f7 | build-windows.bat | build-windows.bat | @echo off
echo Building Module.
echo Dependencies: GIT, PREMAKE5, VISUAL STUDIO 2015/2013.
echo.
:: Hacky way to ensure we've got a git repository & submodules at our disposal
git init
git submodule update --init --recursive
echo.
:: Fire up a Visual Studio command-line environment and generate our solution
IF DEFIN... | @echo off
echo Building Module.
echo Dependencies: GIT, PREMAKE5, VISUAL STUDIO 2015/2013.
echo.
:: Hacky way to ensure we've got a git repository & submodules at our disposal
git init
git submodule update --init --recursive
echo.
:: Fire up a Visual Studio command-line environment and generate our solution
IF DEFIN... | Use VsDevCmd.Bat rather than VsMSBuildCmd.bat | Use VsDevCmd.Bat rather than VsMSBuildCmd.bat
| Batchfile | cc0-1.0 | LennyPenny/gm_megamenu,LennyPenny/gm_megamenu,glua/module-base,glua/module-base,LennyPenny/gm_megamenu |
c31405734c609f677041760a6193951f1cfa12a3 | cppbuild/cppbuild-driver-vs.cmd | cppbuild/cppbuild-driver-vs.cmd | @if "%DEBUG%" == "" @echo off
setlocal
set SOURCE_DIR=%CD%
set BUILD_DIR=%CD%\cppbuild\Release
if EXIST %BUILD_DIR% rd /S /Q %BUILD_DIR%
md %BUILD_DIR%
pushd %BUILD_DIR%
cmake -G "Visual Studio 16 2019" -DBUILD_AERON_DRIVER=ON %SOURCE_DIR%
cmake --build . --clean-first --config Release
ctest -C Release
| @if "%DEBUG%" == "" @echo off
setlocal
set SOURCE_DIR=%CD%
set BUILD_DIR=%CD%\cppbuild\Release
if EXIST %BUILD_DIR% rd /S /Q %BUILD_DIR%
md %BUILD_DIR%
pushd %BUILD_DIR%
cmake -G "Visual Studio 16 2019" -DBUILD_AERON_DRIVER=ON %SOURCE_DIR%
if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL%
cmake --build . --clean-first --... | Exit on first error (Windows) | [C] Exit on first error (Windows)
| Batchfile | apache-2.0 | real-logic/Aeron,real-logic/Aeron,mikeb01/Aeron,real-logic/Aeron,EvilMcJerkface/Aeron,real-logic/Aeron,EvilMcJerkface/Aeron,mikeb01/Aeron,mikeb01/Aeron,mikeb01/Aeron,EvilMcJerkface/Aeron,EvilMcJerkface/Aeron |
49a1ecedb8e059d2c08f4d09e0cdefc98d4a347f | model/generate.bat | model/generate.bat | @ECHO OFF
REM Run all code generation scripts
REM Requires iMatix GSL4, from http:\\www.nuget.org\packages\gslgen
REM Use this when:
REM - you add a socket option (sockopts.xml)
REM - add a new project class (project.xml)
REM - modify one of the referenced gsl templates (*.gsl)
mkdir ..\builds\... | @ECHO OFF
REM Run all code generation scripts
REM Requires iMatix GSL4, from http:\\www.nuget.org\packages\gsl
REM Use this when:
REM - you add a socket option (sockopts.xml)
REM - add a new project class (project.xml)
REM - modify one of the referenced gsl templates (*.gsl)
mkdir ..\builds\min... | Use gsl vs. gslgen for batch model builds. | Use gsl vs. gslgen for batch model builds.
| Batchfile | mpl-2.0 | hintjens/czmq,eburkitt/czmq,trevorbernard/czmq,pmienk/czmq,evoskuil/czmq,kodjobaah/czmq,opedroso/czmq,trevorbernard/czmq,ritchiecarroll/czmq,modulexcite/czmq,c-rack/czmq,opedroso/czmq,tberkey/czmq,twhittock/czmq,soumith/czmq,zeromq/czmq,saki4510t/czmq,twhittock/czmq,mhaberler/czmq,opedroso/czmq,evoskuil/czmq,maxkozlovs... |
40f0f5ad8dd56691ae42e9dd4b9a2f5e5395f3ee | tests/core/math/big/build.bat | tests/core/math/big/build.bat | @echo off
rem math/big tests
set PATH_TO_ODIN==..\..\..\..\odin
set TEST_ARGS=-fast-tests
set TEST_ARGS=-no-random
set TEST_ARGS=
set OUT_NAME=math_big_test_library
set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
echo ---
echo Running core:math/big tes... | @echo off
rem math/big tests
set PATH_TO_ODIN==..\..\..\..\odin
set TEST_ARGS=-fast-tests
set TEST_ARGS=-no-random
set TEST_ARGS=
set OUT_NAME=math_big_test_library.dll
set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
echo ---
echo Running core:math/big... | Update CI for math library. | Update CI for math library.
| Batchfile | bsd-3-clause | gingerBill/Odin,gingerBill/Odin,gingerBill/Odin,gingerBill/Odin |
3eab43780b4d1039ec3a1d473651644a6716d6b7 | ArchiSteamFarm/scripts/generic/ArchiSteamFarm.cmd | ArchiSteamFarm/scripts/generic/ArchiSteamFarm.cmd | @echo off
pushd %~dp0
dotnet ArchiSteamFarm.dll %ASF_ARGS%
| @echo off
pushd %~dp0
:loop
IF NOT "%1" == "" (
SET ASF_ARGS=%ASF_ARGS% %1
SHIFT
GOTO :loop
)
dotnet ArchiSteamFarm.dll %ASF_ARGS%
| Add arguments parsing to batch script | Add arguments parsing to batch script
Kill me.
| Batchfile | apache-2.0 | i3at/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,i3at/ArchiSteamFarm,KlappPc/ArchiSteamFarm,KlappPc/ArchiSteamFarm,JustArchi/ArchiSteamFarm,KlappPc/ArchiSteamFarm |
fe9d89bbfeaf5b9a59d6e5320d826ffaaefbe6cd | build.bat | build.bat | @echo off
cls
cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\"
".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion"
cd ..\..\..\..\..
"packages\FAKE\tools\Fake.exe" build.fsx --envvar version 0.19.0
"packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version 0.19.0
"... | @echo off
set "picklesVersion=0.19.0"
cls
cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\"
".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion"
cd ..\..\..\..\..
"packages\FAKE\tools\Fake.exe" build.fsx --envvar version %picklesVersion%
"packages\FAKE\tools\Fake... | Set the version in an environment variable | Set the version in an environment variable
| Batchfile | apache-2.0 | dirkrombauts/pickles,picklesdoc/pickles,picklesdoc/pickles,picklesdoc/pickles,irfanah/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,magicmonty/pickles,dirkrombauts/pickles,irfanah/pickles,blorgbeard/pickles,blorgbeard/pickles,dirkrombauts/pickles,magicmonty/pickles,irfanah/pickles,picklesdoc/pickles,magicmonty/p... |
4898fdc1d7209fd0d16a4822a3e6d1b6bfa728f8 | rest/startMZmine.bat | rest/startMZmine.bat | @echo off
cls
java -Dj3d.rend=d3d -Djava.util.logging.config.file=conf/logging.properties -Xms512m -Xmx1384m -cp MZmine.jar net.sf.mzmine.main.MZmineClient
| @echo off
cls
java -Dj3d.rend=d3d -Djava.library.path=lib -Djava.util.logging.config.file=conf/logging.properties -Xms512m -Xmx1384m -cp MZmine.jar net.sf.mzmine.main.MZmineClient
| Complete implementation of module io running as a task. | Complete implementation of module io running as a task.
| Batchfile | mit | mzmine/mzmine3,mzmine/mzmine3 |
9feaa90ff6509cef124bd99eab4fafb1112537aa | Tools/buildbot/external.bat | Tools/buildbot/external.bat | @rem Fetches (and builds if necessary) external dependencies
@rem Assume we start inside the Python source directory
call "Tools\buildbot\external-common.bat"
call "%VS90COMNTOOLS%\vsvars32.bat"
if not exist tcltk\bin\tcl85g.dll (
cd tcl-8.5.2.1\win
nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 D... | @rem Fetches (and builds if necessary) external dependencies
@rem Assume we start inside the Python source directory
call "Tools\buildbot\external-common.bat"
call "%VS90COMNTOOLS%\vsvars32.bat"
if not exist tcltk\bin\tcl85.dll (
@rem all and install need to be separate invocations, otherwise nmakehlp is n... | Split Tcl make targets into separate ones. | Split Tcl make targets into separate ones.
| Batchfile | mit | sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator |
1651db799bd08bee3d06491e85417f84ba9391ae | CERR_core/Contouring/BABS/sshContainerExecScript.bat | CERR_core/Contouring/BABS/sshContainerExecScript.bat | set ssh_key=%1
set ssh_server_name=%2
set ssh_uname=%3
set client_session_dir=%4
set server_session_dir=%5
set session_name=%6
set container_path=%7
set algorithm=%8
@echo %algorithm%
@echo here 1
@echo %client_session_dir%
@echo %server_session_dir%
pscp -noagent -r %client_session_dir% %ssh_uname%@%ssh_server_name%... | set ssh_key=%1
set ssh_server_name=%2
set ssh_uname=%3
set client_session_dir=%4
set server_session_dir=%5
set session_name=%6
set container_path=%7
set algorithm=%8
@echo %algorithm%
@echo Copying session dir from client to server...
@echo %client_session_dir%
@echo %server_session_dir%
pscp -noagent -r %client_sess... | Debug print statements for executing container in client-server configuration | Debug print statements for executing container in client-server configuration
| Batchfile | lgpl-2.1 | cerr/CERR,cerr/CERR,cerr/CERR,cerr/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,cerr/CERR,cerr/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,cerr/CERR,aditiiyer/CERR,cerr/CERR,cerr/CERR |
1786e591f9d02bcdc60ef190a570ea9966ceb7d6 | src/Pelasoft.AspNet.Mvc.Slack/nuget-pack.bat | src/Pelasoft.AspNet.Mvc.Slack/nuget-pack.bat | nuget pack Pelasoft.AspNet.Mvc.Slack.csproj -Verbosity detailed -Build -IncludeReferencedProjects -Properties Configuration=Release | @echo off
echo.
echo ###### Nuget Creation Checklist ######
echo ## ##
echo ## * Update assembly version number ##
echo ## * Update nuspec revision notes ##
echo ## * Create tag after final commit ##
echo ## ##
echo #######################... | Add package action remind notice. | Add package action remind notice.
| Batchfile | mit | peterlanoie/aspnet-mvc-slack |
69984c0b111d2470aef26631a056088bb1b9f91e | recipes/yaml-cpp4rkt/bld.bat | recipes/yaml-cpp4rkt/bld.bat | @REM Configure the build of phreeqc4rkt
cmake -S . -B build ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DBUILD_SHARED_LIBS=ON ^
-DYAML_BUILD_SHARED_LIBS=ON ^
-DYAML_CPP_BUILD_TESTS=OFF
@REM Build and install phreeqc4rkt in %L... | @REM Configure the build of yaml-cpp4rkt
cmake -S . -B build ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DBUILD_SHARED_LIBS=ON ^
-DYAML_BUILD_SHARED_LIBS=ON ^
-DYAML_CPP_BUILD_TESTS=OFF
@REM Build and install yaml-cpp4rkt in ... | Fix comment lines refering to other lib | Fix comment lines refering to other lib
| Batchfile | bsd-3-clause | goanpeca/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes... |
87dad55d12b104dcce7245d6a6d50ad3a7b289ca | common/examples/common/odb.d/20-simple-fe.cmd | common/examples/common/odb.d/20-simple-fe.cmd | mkdir "Equipment/Simple Frontend/Settings"
create DOUBLE "Equipment/Simple Frontend/Settings/mean"
set "Equipment/Simple Frontend/Settings/mean" 0.0
create DOUBLE "Equipment/Simple Frontend/Settings/sigma"
set "Equipment/Simple Frontend/Settings/sigma" 1.0 | mkdir "Equipment/Simple Frontend/Settings"
create DOUBLE "Equipment/Simple Frontend/Settings/min"
set "Equipment/Simple Frontend/Settings/min" 0.0
create DOUBLE "Equipment/Simple Frontend/Settings/max"
set "Equipment/Simple Frontend/Settings/max" 1.0 | Use min/max instead of mean/sigma. | Use min/max instead of mean/sigma.
| Batchfile | mit | g2-field-team/field-daq |
f7bb40e6999946333c68a85e998d0311d3d5491d | Tools/Appveyor.after_deploy.bat | Tools/Appveyor.after_deploy.bat | @echo on
@SET /A exitcode=0
@SET /A TESTFAILURE_ERROR=1
@SET /A PUSHARTIFACT_ERROR=2
@SET /A READREPORT_ERROR=4
nunit3-console.exe Tests\CSF.Screenplay.WebApis.Tests\bin\Debug\CSF.Screenplay.WebApis.Tests.dll
@IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%TESTFAILURE_ERROR%
appveyor PushArtifact SpecFlow.report.txt
@IF ... | @echo on
@SET /A exitcode=0
@SET /A TESTFAILURE_ERROR=1
@SET /A PUSHARTIFACT_ERROR=2
@SET /A READREPORT_ERROR=4
nunit3-console.exe Tests\CSF.Screenplay.WebApis.Tests\bin\Debug\CSF.Screenplay.WebApis.Tests.dll
@IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%TESTFAILURE_ERROR%
appveyor PushArtifact SpecFlow.report.txt
@IF ... | Update AppVeyor script now that output files are changed | Update AppVeyor script now that output files are changed | Batchfile | mit | csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay |
44e2494682eda601f669cc512b0455e17a13e714 | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Add Program Files\7-Zip to path | Add Program Files\7-Zip to path | Batchfile | apache-2.0 | mirek2580/namebench |
df39739683ff6265950ce13a5c81cf161abc787c | src/msc/ffihugs.bat | src/msc/ffihugs.bat | @echo off
REM First build up the command line to pass on in %s%
set s=
:begin
if "%1" == "" goto done
set s=%s% "%1"
shift
goto begin
:done
REM Now figure out what to do
if not "%VS71COMNTOOLS%" == "" call "%VS71COMNTOOLS%vsvars32.bat" > nul
cl %s%
| @echo off
REM First build up the command line to pass on in %s%
set s=
:begin
if '%1' == '' goto done
set s=%s% %1
shift
goto begin
:done
REM Now figure out what to do
if not "%VS71COMNTOOLS%" == "" call "%VS71COMNTOOLS%vsvars32.bat" > nul
cl %s%
| Update the batch file to work with certain quoting mechanisms employed by Cabal | Update the batch file to work with certain quoting mechanisms employed by Cabal | Batchfile | bsd-3-clause | FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs |
ee965c2d44865d2b23e6ce2eff6b4888b3b53bde | src/MICore/ValidateDesignerFile.cmd | src/MICore/ValidateDesignerFile.cmd | @echo off
setlocal
REM Copyright (c) Microsoft. All rights reserved.
REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
if "%~3"=="" goto help
if NOT "%~4"=="" goto help
goto Run
:Help
echo syntax: ValidateDesignerFile.cmd ^<path_to_designer_file^> ^<path_to_candida... | @echo off
setlocal
REM Copyright (c) Microsoft. All rights reserved.
REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
if "%~3"=="" goto help
if NOT "%~4"=="" goto help
goto Run
:Help
echo syntax: ValidateDesignerFile.cmd ^<path_to_designer_file^> ^<path_to_candida... | Fix designer files getting updated just for version number changes | Fix designer files getting updated just for version number changes
This checkin makes a change to ValidateDesignerFile.cmd so that if only the file version inside a GeneratedCodeAttribute changed, the files are not considered different.
| Batchfile | mit | upsoft/MIEngine,devilman3d/MIEngine,idkwim/MIEngine,devilman3d/MIEngine,caslan/MIEngine,upsoft/MIEngine,rajkumar42/MIEngine,Microsoft/MIEngine,chuckries/MIEngine,UIKit0/MIEngine,bbqchickenrobot/MIEngine,yazeng/MIEngine,PistonDevelopers/MIEngine,jacdavis/MIEngine,yacoder/MIEngine,rajkumar42/MIEngine,chuckries/MIEngine,M... |
b2a95b9fd0dd934423c1804274c0687b2a998892 | tools/buildexe.bat | tools/buildexe.bat | @ECHO OFF
CD winrun4j
COPY WinRun4J64.exe DNGearSim.exe
RCEDIT64.exe /N DNGearSim.exe DNGearSim.ini
RCEDIT64.exe /S DNGearSim.exe splash.bmp
RCEDIT64.exe /I DNGearSim.exe icon.ico
COPY "DNGearSim.exe" "../../runtime/DNGearSim.exe"
CD ../..
CD Bootstrap/target
COPY "bootstrap.jar" "../../runtime/bootstrap.jar"
PAUSE | @ECHO OFF
CD winrun4j
COPY WinRun4J64.exe DNGearSim.exe
RCEDIT64.exe /N DNGearSim.exe DNGearSim.ini
RCEDIT64.exe /S DNGearSim.exe splash.bmp
RCEDIT64.exe /I DNGearSim.exe icon.ico
COPY "DNGearSim.exe" "../../runtime/DNGearSim.exe"
CD ../..
CD Bootstrap/target
COPY "bootstrap.jar" "../../runtime/bootstrap.jar"
CD ../.... | Remove unnecessary pause, CD back to top | Remove unnecessary pause, CD back to top
| Batchfile | mit | vincentzhang96/DNGearSim |
a0aa84917f8f9d99c636dd491054c24c508fbf4c | argus/resources/windows/schedule_installer.bat | argus/resources/windows/schedule_installer.bat | schtasks /CREATE /TN "cloudbaseinit-installer" /SC ONCE /SD 01/01/2020 /ST 00:00:00 /RL HIGHEST /RU CiAdmin /RP Passw0rd /TR "powershell C:\\installcbinit.ps1 -serviceType %1 -installer %2" /F
schtasks /RUN /TN "cloudbaseinit-installer"
timeout /t 5
:loop
for /f "tokens=2 delims=: " %%f in ('schtasks /query ... | schtasks /CREATE /TN "cloudbaseinit-installer" /SC ONCE /SD 01/01/2020 /ST 00:00:00 /RL HIGHEST /RU CiAdmin /RP Passw0rd /TR "powershell C:\\installcbinit.ps1 -serviceType %1 -installer %2" /F
schtasks /RUN /TN "cloudbaseinit-installer"
timeout /t 5
:loop
for /f "tokens=2 delims=: " %%f in ('schtasks /query ... | Fix the name of the scheduled task. | Fix the name of the scheduled task.
| Batchfile | apache-2.0 | AlexandruTudose/cloudbase-init-ci,PCManticore/argus-ci,cmin764/argus-ci,cloudbase/cloudbase-init-ci,micumatei/cloudbase-init-ci,stefan-caraiman/cloudbase-init-ci |
5faca28970d9d3829b5a867a193786aca3f81948 | extras/scripts/postsubmit.bat | extras/scripts/postsubmit.bat |
echo on
set PATH=C:\Windows\system32;C:\Windows;%PYTHON3_PATH%;%PYTHON3_PATH%\Scripts;%CMAKE_PATH%;
if not "%VCVARSALL_DIR%" == "" CALL "%VCVARSALL_DIR%\vcvarsall.bat" amd64
if not "%MINGW_PATH%" == "" SET PATH=%PATH%%MINGW_PATH%;
setx PATH "%PATH%"
mkdir C:\Fruit\build-%CONFIGURATION%
cd C:\Fruit\build-%CONFIGUR... |
echo on
set PATH=C:\Windows\system32;C:\Windows;%PYTHON3_PATH%;%PYTHON3_PATH%\Scripts;%CMAKE_PATH%;
if not "%VCVARSALL_DIR%" == "" CALL "%VCVARSALL_DIR%\vcvarsall.bat" amd64
if not "%MINGW_PATH%" == "" SET PATH=%PATH%%MINGW_PATH%;
setx PATH "%PATH%"
mkdir C:\Fruit\build-%CONFIGURATION%
cd C:\Fruit\build-%CONFIGUR... | Print the contents of CMakeError.log after running CMake for CI tests on Windows. This helps investigate why a CHECK_CXX_SOURCE_COMPILES check failed. | Print the contents of CMakeError.log after running CMake for CI tests on Windows. This helps investigate why a CHECK_CXX_SOURCE_COMPILES check failed.
| Batchfile | apache-2.0 | google/fruit,google/fruit,google/fruit |
b977bfd9e6643a74d85fe05fb699734f042ac210 | new-client.bat | new-client.bat | @echo off
set REPO_URL=https://raw.githubusercontent.com/PixxxeL/regular-gulpfile/master/
echo ===========================================================================
echo 1. Create bower.json, package.json
echo 2. Download gulpfile.js and skeleton
echo 3. Make directories
echo.
pause && npm init &&... | @echo off
set REPO_URL=https://raw.githubusercontent.com/PixxxeL/regular-gulpfile/master/
echo ===========================================================================
echo 1. Create bower.json, package.json
echo 2. Download gulpfile.js and skeleton
echo 3. Make directories
echo.
pause && npm init &&... | Add bower install and copy installed to | Add bower install and copy installed to | Batchfile | mit | PixxxeL/regular-gulpfile,PixxxeL/regular-gulpfile,PixxxeL/regular-gulpfile |
c07c55b936118c42a3a9d8bcc2de3b9b589715c7 | tool/generate.cmd | tool/generate.cmd | @echo off
echo Generating C-style Win32 APIs and tests
call dart %~dp0win32\win32api.dart
call dart %~dp0win32\generate_ffi_jsonproto.dart
call dart %~dp0metadata\win32.dart %~dp0..\lib\src\generated
call dart %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes from Windows metadata
call dart %~dp0meta... | @echo off
echo Generating C-style Win32 APIs and tests
call dart %~dp0win32\win32api.dart
call dart %~dp0win32\generate_ffi_jsonproto.dart
call dart %~dp0metadata\win32.dart %~dp0..\lib\src\generated
call dart %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes from Windows metadata
call dart %~dp0meta... | Use flutter test for faster testing | Use flutter test for faster testing
| Batchfile | bsd-3-clause | timsneath/win32,timsneath/win32,timsneath/win32 |
21a1293d84ced49f30783b87afd9a8cc98b9631d | build/win/githeader.bat | build/win/githeader.bat | @echo off
rem Generate the header file from the Store info about in which git branch,
rem what SHA1 and at what date/time we executed make.
for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 1}"') do set GIT_BRANCH=%%a
for /f "delims=" %%a in ('powershell.exe -command ... | @echo off
rem Generate the header file from the Store info about in which git branch,
rem what SHA1 and at what date/time we executed make.
for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 1}"') do set GIT_BRANCH=%%a
for /f "delims=" %%a in ('powershell.exe -command ... | Use proper batch script syntax | Use proper batch script syntax
| Batchfile | lgpl-2.1 | esakellari/root,CristinaCristescu/root,BerserkerTroll/root,beniz/root,vukasinmilosevic/root,krafczyk/root,satyarth934/root,sirinath/root,lgiommi/root,zzxuanyuan/root,root-mirror/root,lgiommi/root,buuck/root,pspe/root,simonpf/root,gbitzes/root,jrtomps/root,gganis/root,sirinath/root,Y--/root,perovic/root,buuck/root,zzxua... |
4db47b9ef7056b0f49a9f248bddd8c2f8468018a | src/application.bat | src/application.bat | ### application.bat - 201x - votre nom ###
echo "Build : 10:00"
echo "version 1" | ### application.bat - 2015 - Thibault ROGER ###
echo "Build : 10:00"
echo "version 1" | Add file header with right data | Add file header with right data
| Batchfile | apache-2.0 | leboucher/TP-git,leboucher/Versionning-TP1 |
727415fc2e7fbff1e897f4bea47ccb6fa3b83377 | win-bundle-install.bat | win-bundle-install.bat | @echo off
for /D %%i in (bundles/*) do (
if exist "%cd%\bundles\%%i\package.json" (
cd "%cd%\bundles\%%i"
echo Updating %%i
call npm install >nul 2>&1
)
)
| @echo off
for /D %%i in (bundles/*) do (
if exist "%cd%\bundles\%%i\package.json" (
pushd "%cd%\bundles\%%i"
echo Updating %%i
call npm install >nul 2>&1
popd
)
)
| Fix windows bundle install staying in bundle dir after install | Fix windows bundle install staying in bundle dir after install
| Batchfile | mit | shawncplus/ranviermud |
208f70a7340222c95078d68d41de9ca4fa09f548 | build-msvc-release.bat | build-msvc-release.bat | scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=1 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=1 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buil... | scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=0 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=0 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buil... | Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build. | Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
| Batchfile | lgpl-2.1 | csound/csound,csound/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,csound/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,csound/csound,ketchupok/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound |
149f8103929f9036b3b7040f9d6ba324791f172a | Build/build_portable.bat | Build/build_portable.bat | @ECHO OFF
SET /p APPLICATION_VERSION=Tabster Version:
SET BUILD_DIRECTORY=%CD%
SET ZIP_ARCHIVE="%BUILD_DIRECTORY%\Tabster %APPLICATION_VERSION%.zip"
pushd..
SET SOLUTION_DIRECTORY=%CD%
SET VS_BUILD_DIRECTORY=%SOLUTION_DIRECTORY%\Tabster\bin\Portable\
::build
ECHO.
ECHO Building Solution...
C:\w... | @ECHO OFF
SET /p APPLICATION_VERSION=Tabster Version:
SET BUILD_DIRECTORY=%CD%
SET ZIP_ARCHIVE="%BUILD_DIRECTORY%\Tabster %APPLICATION_VERSION%.zip"
IF EXIST %ZIP_ARCHIVE% del /F %ZIP_ARCHIVE%
pushd..
SET SOLUTION_DIRECTORY=%CD%
SET VS_BUILD_DIRECTORY=%SOLUTION_DIRECTORY%\Tabster\bin\Portable\
... | Delete archive if it already exists. | Delete archive if it already exists.
| Batchfile | apache-2.0 | GetTabster/Tabster |
cc44e809eb4d1c1f77c35335586227b264f25842 | bin/nodist.cmd | bin/nodist.cmd | @echo off
:: hook `nodist use <version>`
if "%1"=="use" (
%0 + %2
if ERRORLEVEL 0 (
:: get path to version and add it to PATH
FOR /F "tokens=1 delims=" %%A in ('"%0" path %2') do @set Path=%%A;%Path%
)
goto end
)
:: hook `nodist update`
if "%1"=="update" (
pushd .
cd /D "%~dp0\.."
npm update
p... | @echo off
:: hook `nodist use <version>`
if "%1"=="use" (
%0 + %2
if ERRORLEVEL 0 (
:: get path to version and add it to PATH
FOR /F "tokens=1 delims=" %%A in ('"%0" path %2') do @set "Path=%%A;%Path%"
)
goto end
)
:: hook `nodist update`
if "%1"=="update" (
pushd .
cd /D "%~dp0\.."
npm update
... | Fix a bug where brackets in PATH would break the batch script. | Fix a bug where brackets in PATH would break the batch script.
| Batchfile | mit | marcelklehr/nodist,marcelklehr/nodist,marcelklehr/nodist,nullivex/nodist,nullivex/nodist,nullivex/nodist |
cdc4906b4f7588c4759cb3b6dd4cca3ca91247bd | 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 ..
... | Use environment variables and add atom support | Use environment variables and add atom support
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
8adb69691306d0dabad360ef0e380682420c6cb8 | go.bat | go.bat | SET "memParams=-Xms2g -Xmx4g"
rem SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080"
SET debugParams=
java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar -u D:\ -v G:\incoming\SnomedCT_RF2Release_INT_20160131.zip
| SET "memParams=-Xms4g -Xmx8g"
rem SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080"
SET debugParams=
java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar -u D:\ -v G:\incoming\SnomedCT_RF2Release_INT_20160131.zip
| Increase memory for PC startup file | Increase memory for PC startup file
| Batchfile | apache-2.0 | IHTSDO/rf2-to-rf1-conversion,IHTSDO/rf2-to-rf1-conversion |
e5e80ff0dc52750312f85c9415a311c4e91d779d | FullBuild.cmd | FullBuild.cmd | @echo off
goto :main
======================================================================
Performs a clean build and create NuGet packages for this solution
Note that this also modifies the following files, replacing
placeholder version numbers with actual version numbers:
src\common\GlobalAssemblyInfo.cs
sr... | @echo off
goto :main
======================================================================
Performs a clean build and create NuGet packages for this solution
Note that this also modifies the following files, replacing
placeholder version numbers with actual version numbers:
src\common\GlobalAssemblyInfo.cs
sr... | Use automatic versioning for assembly version build number | Use automatic versioning for assembly version build number
| Batchfile | mit | Microsoft/xunit-performance,Microsoft/xunit-performance,pharring/xunit-performance,mmitche/xunit-performance,ianhays/xunit-performance,ericeil/xunit-performance,visia/xunit-performance |
f0b77418f4b7efce3edc13d937acf13951e4d02f | tools/createNugetPackages.cmd | tools/createNugetPackages.cmd | @ECHO OFF
SET SUFFIX=%1
IF '%SUFFIX%' == '' GOTO NOSUFFIX
for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do dotnet pack %%a --no-build -c Release -o "%~dp0..\nugets" --version-suffix %SUFFIX%
GOTO END
:NOSUFFIX
ECHO Please provide verison suffix.
ECHO.For example:
ECHO.createNugetPackages ... | @ECHO OFF
SET SUFFIX=%1
IF '%SUFFIX%' == '' GOTO NOSUFFIX
for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do dotnet pack %%a --no-build -c Release -o "%~dp0..\nugets" --version-suffix %SUFFIX%
GOTO END
:NOSUFFIX
for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do ... | Allow no suffix for creating nuget packages | Allow no suffix for creating nuget packages
| Batchfile | mit | karolz-ms/diagnostics-eventflow |
eddefdf4d0d767d24aa4acb006b42aae54c98933 | src/application.bat | src/application.bat | ### application.bat - 2015 - gandubert ###
version = "1.2"
build_hour = "11H00"
echo "Build ${build_hour}"
echo "version ${version}" | ### application.bat - 2015 - gandubert MAIGNAN ###
version = "1.2"
build_hour = "11H00"
echo "Build ${build_hour}"
echo "version ${version}" | Update header for new member | Update header for new member
| Batchfile | apache-2.0 | joachim-gandubert/TP-git |
7f9c2f352a6404e04d8c553374e2d8ee2b532bbc | pybox2d/dev/bld.bat | pybox2d/dev/bld.bat | if not exist C:\dev\swig goto noswig
set PATH=C:\dev\swig;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC;%PATH%
@echo off
rem NOTE: If building under MobaSSH, the C:\Windows\System32\bsh\temp path is an issue
rem You'll see something like this after the swig step:
rem c1xx : fatal error C1083: Cannot open co... | if not exist C:\dev\swig goto noswig
echo on
set PATH=C:\dev\swig;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC;%PATH%
rem NOTE: git version tag broken on conda-build-1.18.2 (revert to 1.18.1 or use
rem the version after when it's released)
@echo off
rem NOTE: If building under MobaSSH, the C:\Windows... | Add note about version tag being busted on conda-build-1.18.2 on windows | Add note about version tag being busted on conda-build-1.18.2 on windows
| Batchfile | bsd-2-clause | kne/conda-recipes |
0c99019a34fdbfa0e014ba15e4e4f54823e9c6d8 | whiteboard/forrestdoc/build.bat | whiteboard/forrestdoc/build.bat | rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you ma... | @echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License... | Move the @echo line above license header so it is not echoed to command line. Thanks to Vincent Siveton FOR-1021 | Move the @echo line above license header so it is not echoed to command line. Thanks to Vincent Siveton FOR-1021
git-svn-id: 36dcc065b18e9ace584b1c777eaeefb1d96b1ee8@555984 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest |
20de8480b28dae6169560198596039fffaa1185a | configure.bat | configure.bat | @rem Run CMake, pointing to sibling directories containing dependencies.
@rem Note that zmq and cppzmq are relative to the source dir, while
@rem protobuf is relative to the build dir. Not sure why.
@set build_type=Release
@if not "%1"=="" set build_type=%1
@echo Configuring for build type %build_type%
cmake -D... | @rem Run CMake, pointing to sibling directories containing dependencies.
@rem Note that zmq and cppzmq are relative to the source dir, while
@rem protobuf is relative to the build dir. Not sure why.
@set build_type=Release
@if not "%1"=="" set build_type=%1
@set build_bitness=32
@if not "%2"=="" set build_b... | Use second parameter to define bitness | Use second parameter to define bitness
--HG--
branch : parametrize_configure
| Batchfile | apache-2.0 | j-rivero/ign-transport-git,j-rivero/ign-transport-git,j-rivero/ign-transport-git,j-rivero/ign-transport-git |
78ab08770b5135c8f2aa42cdd7f5e92c300db74b | build-ci.cmd | build-ci.cmd | REM other targets are:
REM 'build'
REM 'test'
REM 'test-integration'
tools\nant\bin\nant.exe -f:Common.Logging.build build | REM other targets are:
REM 'build'
REM 'test'
REM 'test-integration'
tools\nant\bin\nant.exe -f:Common.Logging.build test-integration | Revert "setting ci build script to only compile as CI box will scan and run tests independently" | Revert "setting ci build script to only compile as CI box will scan and run tests independently"
This reverts commit a74c5612fcccaa3779ee262d1f1fc48238502b97.
| Batchfile | apache-2.0 | ajayanandgit/common-logging,tablesmit/common-logging,xlgwr/common-logging,net-commons/common-logging,Moily/common-logging,meixger/common-logging,net-commons/common-logging |
a5a2687b7b6a032b31e2b63c4c58aab3987421b3 | Makefile.bat | Makefile.bat | @ECHO OFF
:args
IF NOT "%1"=="" (
call :%1
SHIFT
GOTO args
)
GOTO :EOF
:releases
call :pre_build
call :build
grunt
:pre_build
mkdir build
:build
cp -R src/* build
call :build_server
call :build_viewer
cd build
npm install
cd ..
:build_server
npm install GochoMugo/docvy-server#develop
mv node_modules/docvy... | REM This batch script is an effort at porting the Unix Makefile for
REM Windows. Therefore, it may not be updated as frequent as the Unix
REM Makefile. (Please consider helping us keeping it up to date)
@ECHO OFF
:args
IF NOT "%1"=="" (
call :%1
SHIFT
GOTO args
)
GOTO :EOF
:releases
call :pre_build
call :build... | Add note about updates to the Windows build script | Add note about updates to the Windows build script
| Batchfile | mit | docvy/app,docvy/app,docvy/app |
8f68f3b8d5c3413d5054eefc049866f55abe851e | bin/feed_archive.bat | bin/feed_archive.bat | @echo off
set PYTHONPATH=%CD%
C:\Python27\python.exe feed_archive\feed_archive.py %*
| @echo off
set PYTHONPATH=%CD%
python feed_archive\feed_archive.py %*
| Replace absolute path of python | Replace absolute path of python | Batchfile | apache-2.0 | mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead |
d6cea7d252215163a4af96dbf5882a591c2bd5b6 | setup.bat | setup.bat | @PATH=%PATH%;%XIA2_ROOT%\binaries\win32
@PATH=%PATH%;%XIA2_ROOT%\Applications
| @PATH=%XIA2_ROOT%\binaries\win32;%PATH%
@PATH=%PATH%;%XIA2_ROOT%\Applications
| Put win32 binaries at front of path, to pick up scala &c. | Put win32 binaries at front of path, to pick up scala &c.
| Batchfile | bsd-3-clause | xia2/xia2,xia2/xia2 |
60d23651964e8b30d599bd69e7306c6a855af11c | ci/scripts/build-project-windows.bat | ci/scripts/build-project-windows.bat | SET "JAVA_HOME=C:\opt\jdk1.8.0_161"
cd git-repo
./mvnw clean install -X | SET "JAVA_HOME=C:\opt\jdk-8"
cd git-repo
./mvnw clean install -X | Fix location of java home for windows build | Fix location of java home for windows build
See gh-865
| Batchfile | apache-2.0 | snicoll/initializr,snicoll/initializr,snicoll/initializr,spring-io/initializr,spring-io/initializr,spring-io/initializr |
5900171ca5fdaf9a8625d0ef5dd27f6532d9a442 | devtools/win-install-coreclr.cmd | devtools/win-install-coreclr.cmd | rem from https://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-asp-net-5-from-the-command-line
rem install .NET version manager (DNVM)
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent... | rem from https://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-asp-net-5-from-the-command-line
rem install .NET version manager (DNVM)
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent... | Fix missing newline at EOF. | Fix missing newline at EOF.
| Batchfile | apache-2.0 | JeroMiya/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,JeroMiya/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,JeroMiya/OSVR-Config,JeroMiya/OSVR-Config |
1412324a267658efd571e363e39d4330c8993edb | scripts/slave/drmemory/build_env.bat | scripts/slave/drmemory/build_env.bat | :: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual S... | :: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual S... | Fix drmemory build environment wrapper for VS 2008 | Fix drmemory build environment wrapper for VS 2008
vcvars32.bat isn't totally standalone, it wants this VSCOMNTOOLS variable set
up for it.
TBR=nsylvain@chromium.org
BUG=154895
Review URL: https://codereview.chromium.org/11186003
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@162191 0039d316-1c4b-4281-b951-d87... | Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
36e7e12963728efe69fa90a1ec0e877642cdb333 | libexec/rbenv_register.cmd | libexec/rbenv_register.cmd | :: Add a new Ruby version to rbenv
@ setlocal EnableDelayedExpansion
@ call "%~dp0common_vars.cmd"
@reg add "HKCR\.rb" /ve /t REG_SZ /d "RubyFile" /f > NUL
@reg add "HKCR\RubyFile" /ve /t REG_SZ /d "Ruby File" /f > NUL
@reg add "HKCR\RubyFile\DefaultIcon" /ve /t REG_SZ /d "%RBENV_ROOT%\resources\ruby.ico" /f >... | :: Add a new Ruby version to rbenv
@ setlocal EnableDelayedExpansion
@ call "%~dp0common_vars.cmd"
@reg add "HKCR\.rb" /ve /t REG_SZ /d "RubyFile" /f > NUL
@reg add "HKCR\RubyFile" /ve /t REG_SZ /d "Ruby File" /f > NUL
@reg add "HKCR\RubyFile\DefaultIcon" /ve /t REG_SZ /d "%RBENV_ROOT%\resources\ruby.ico" /f >... | Change register to use rbenv exec instead of Ruby shim | Change register to use rbenv exec instead of Ruby shim
| Batchfile | mit | genezys/rbenv-cmd,genezys/rbenv-cmd |
3e8fbd99451bedb3af621ec6487207a7ac024b5b | scripts/test_native_code.bat | scripts/test_native_code.bat | @echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
powershell C:\projects\spectre\scripts\Up... | @echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
IF %ERRORLEVEL% NEQ 0 (
set /A failures... | Solve problem of non-failing native tests | Solve problem of non-failing native tests
| Batchfile | apache-2.0 | spectre-team/spectre,spectre-team/spectre,mg6/spectre,mg6/spectre,spectre-team/spectre,mg6/spectre |
db75a4a6c03ae191ee17c472836c58bddbecf731 | apm-collector/apm-collector-boot/bin/collectorService.bat | apm-collector/apm-collector-boot/bin/collectorService.bat | @echo off
setlocal
set COLLECTOR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_HOME=%~dp0%..
set COLLECTOR_OPTS="-Xms256M -Xmx512M -Dcollector.logDir=%COLLECTOR_HOME%\logs"
set CLASSPATH=%COLLECTOR_HOME%\config;.;
set CLASSPATH=%COLLECTOR_HOME%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:... | @echo off
setlocal
set COLLECTOR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_HOME=%~dp0%..
set COLLECTOR_OPTS="-Xms256M -Xmx512M -Dcollector.logDir=%COLLECTOR_HOME%\logs"
set CLASSPATH=%COLLECTOR_HOME%\config;.;
set CLASSPATH=%COLLECTOR_HOME%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:... | Fix issue that collector start failed in the Windows environment | [Collector] Fix issue that collector start failed in the Windows environment
| Batchfile | apache-2.0 | apache/skywalking,apache/skywalking,hanahmily/sky-walking,ascrutae/sky-walking,OpenSkywalking/skywalking,apache/skywalking,ascrutae/sky-walking,ascrutae/sky-walking,ascrutae/sky-walking,apache/skywalking,apache/skywalking,OpenSkywalking/skywalking,apache/skywalking,apache/skywalking,hanahmily/sky-walking |
77128c620390d4c8d0d8ca88d7be5b7fa9fac963 | build.cmd | build.cmd | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;tools\NuGet
nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages
nuget install FSharp.Compiler.Tools -nocache -version 4.0.1.21 -excludeVersion -o tools/packa... | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\4.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\... | Revert using fsi from FSharp.Compiler.Tools | Revert using fsi from FSharp.Compiler.Tools
| Batchfile | apache-2.0 | intellifactory/websharper.ui.next,intellifactory/websharper.ui.next,intellifactory/websharper.ui.next |
361ea071e5128777a0e4f31f7ad43fee877c72b8 | build.cmd | build.cmd | mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule
csc /t:library /debug /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs
csc /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs | mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule
csc /t:library /debug /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs
csc /debug /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
| Build tests w/ debugging symbols | Build tests w/ debugging symbols
| Batchfile | mit | adamsitnik/slice.net,kurtschelfthout/slice.net,joeduffy/slice.net |
99d23f62a22a98e8c3db7a16942d05909e959a56 | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Add Program Files\7-Zip to path | Add Program Files\7-Zip to path | Batchfile | apache-2.0 | thiagomagero/namebench,DanielAttia/namebench,kiseok7/namebench,Max-Vader/namebench,cloudcache/namebench,xeoron/namebench,HerlonNascimento/namebench,perrytm/namebench,seshin/namebench,siripuramrk/namebench,Spindletop16/namebench,vishnunuk/namebench,felipsmartins/namebench,MicroWorldwide/namebench,Jeff-Lewis/namebench,aj... |
bd0467b4071c7127df2d555dfe4a9dddf0001aa9 | build_java_executor.bat | build_java_executor.bat | cd %~dp0java_executor
del /s /q objs
rmdir objs
md objs
cd src
javac -d ..\objs ca\dmoj\java\*.java
cd ..\objs
del ..\..\executors\java_executor.jar
jar cmf ..\src\META-INF\MANIFEST.MF ..\..\executors\java_executor.jar ca\dmoj\java\*.class
| cd %~dp0java_executor
del /s /q objs
rmdir objs
md objs
cd src
javac -source 1.7 -target 1.7 -d ..\objs ca\dmoj\java\*.java
cd ..\objs
del ..\..\executors\java_executor.jar
jar cmf ..\src\META-INF\MANIFEST.MF ..\..\executors\java_executor.jar ca\dmoj\java\*.class
| Build for 1.7 even with 1.8 javac | Build for 1.7 even with 1.8 javac | Batchfile | agpl-3.0 | DMOJ/judge,DMOJ/judge,DMOJ/judge |
e917bc85ccb61ff1213b03de2767ee724f5638ff | tools/windows/sign_msi.bat | tools/windows/sign_msi.bat | @echo off
set DIST_DIR=dist
set CERTIFICATE_PATH="%USERPROFILE%\certificates\nuxeo.com.pfx"
set MSI_PROGRAM_NAME="Nuxeo Drive"
set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll
set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL%
set VERIFY_CMD=signtool verif... | @echo off
set DIST_DIR=dist
set CERTIFICATE_PATH="%USERPROFILE%\certificates\nuxeo.com.pfx"
set PFX_PASSWORD=""
set MSI_PROGRAM_NAME="Nuxeo Drive"
set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll
set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /p %PFX_PASSWORD% /d %MSI_PROGRAM_NAME% /t %TIMEST... | Add PFX certificate password option when signing msi | NXP-12981: Add PFX certificate password option when signing msi
| Batchfile | lgpl-2.1 | ssdi-drive/nuxeo-drive,IsaacYangSLA/nuxeo-drive,DirkHoffmann/nuxeo-drive,ssdi-drive/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,ssdi-drive/nuxeo-drive,arameshkumar/nuxeo-drive,rsoumyassdi/nuxeo-drive,DirkHoffmann/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,loopingz/nuxeo-dr... |
6a8382c1e7db41398e0ac2a703289ae481e32bd0 | auto_backup/auto_backup.cmd | auto_backup/auto_backup.cmd | robocopy C:\Users\user\Documents F:\Backup\Documents /MIR /DCOPY:T /xj /np /tee /log:backup_log.txt
robocopy C:\Users\user\Pictures F:\Backup\Pictures /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt
robocopy C:\Users\user\Music F:\Backup\Music /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt
robocopy C:\Users\... | robocopy "C:\Users\user\Documents" "F:\Backup\Documents" /MIR /DCOPY:T /xj /np /tee /log:backup_log.txt
robocopy "C:\Users\user\Pictures" "F:\Backup\Pictures" /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt
robocopy "C:\Users\user\Music" "F:\Backup\Music" /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt
roboco... | Add quotation around dir path. | Add quotation around dir path.
| Batchfile | apache-2.0 | shianchin/mini_projects,shianchin/mini_projects,shianchin/mini_projects |
f78d776f8a683826b955d1da5d7719937d272e90 | slave/run_slave.bat | slave/run_slave.bat | @echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
cd /d %~dp0
:: Running it once will make sure svn and python were downloaded.
call gclient.bat > nul
:: run_slave.... | @echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
cd /d %~dp0
:: Running it once will make sure svn and python were downloaded.
call gclient.bat > nul
:: run_slave.... | Write twistd.log files on Windows | Write twistd.log files on Windows
That will simplify debugging Buildbot slave process on Windows, plus
will also enable sending those logs to the Cloud.
BUG=492404
R=dsansome@chromium.org, iannucci@chromium.org
Review URL: https://codereview.chromium.org/1415523007 .
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9... | Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
ce768b670860a6bd6a83d16ea6137e0fcb0df5df | js.build.bat | js.build.bat | "C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=misc.js ^
--js=siggy.js ^
--js=siggy.helpers.js ^
--js=siggy.static.js ^
--js=siggy.intel.dscan.js ^
--js=siggy.intel.poses.js ^
--js=siggy.charactersettings.js ^
--js=siggy.notifications.js ^
--js=siggy.timer.js ^
--js=siggy.sigt... | java.exe -jar compiler.jar ^
--js=misc.js ^
--js=siggy.js ^
--js=siggy.helpers.js ^
--js=siggy.static.js ^
--js=siggy.intel.dscan.js ^
--js=siggy.intel.poses.js ^
--js=siggy.charactersettings.js ^
--js=siggy.notifications.js ^
--js=siggy.timer.js ^
--js=siggy.sigtable.js ^
--js=siggy.globalnotes.js ^
--js=s... | Use java instead of full path | Use java instead of full path
| Batchfile | mit | marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy |
3fcadc4815a4b1cb540f0789b984bffce87f4e3f | test/runtests.bat | test/runtests.bat | @ECHO OFF
REM compile the code into the bin folder
javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file and redirect the output to the actual.txt
java -classpath ..\bin seedu.addressbook.Main < input.txt > actual.txt
REM compare the o... | @ECHO OFF
REM create bin directory if it doesn't exist
if not exist ..\bin mkdir ..\bin
REM delete output from previous run
del actual.txt
REM compile the code into the bin folder
javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file... | Update test script to clean up at start | Update test script to clean up at start
| Batchfile | mit | imhongw/addressbook-level2,mingruimingrui/addressbook-level2,cheec/addressbook-level2,zachylimwl/addressbook-level2,mingruimingrui/addressbook-level2,cheec/addressbook-level2,se-edu/addressbook-level2,se-edu/addressbook-level2,zachylimwl/addressbook-level2,imhongw/addressbook-level2 |
43990ca1c9e09a5cbdef537a0a3dd45b647c7153 | test.bat | test.bat | setlocal
cd %~dp0
set path=%path;%C:\Users\marco\OneDrive\Documents\PROJECTS\ThirdParties\vtk_installRelease\bin
"C:\Users\marco\OneDrive\Documents\PROJECTS\polytriagnulation\out\Unittests\Release\unittests.exe"
| setlocal
cd %~dp0
set path=%path;%C:\Users\marco\OneDrive\Documents\PROJECTS\ThirdParties\vtk_installRelease\bin
call "C:\Users\marco\OneDrive\Documents\PROJECTS\polytriagnulation\out\Unittests\Release\unittests.exe"
pause | Test run via bat file. | Test run via bat file.
| Batchfile | apache-2.0 | marcomanno/polygon_triangulation,marcomanno/polygon_triangulation |
be8e6a946151e93ef0b2a19048b80caa6deefc36 | 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/f1f26085d54438c5a3eb951baba56fc0db8f90eb
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/93edfcb6e9c75d395e805825f5051e707bd50bb8
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update to use KuduScript 1.0.4 | Update to use KuduScript 1.0.4
| Batchfile | apache-2.0 | sitereactor/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,projectkudu/kudu,sitereactor/kudu,puneet-gupta/kudu,projectkudu/kudu,sitereactor/kudu,badescuga/kudu,juvchan/kudu,juvchan/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,shibayan/kudu,puneet-gupta/kudu,projectkudu/kudu,badescuga/kudu,EricSten-MSFT/kudu,shibayan/kudu,punee... |
818ca3deaf21d6e86976646df56f9d326ac39ccd | docfx/build-site.cmd | docfx/build-site.cmd | choco install docfx -y
choco update docfx -y
docfx docfx\docfx.json
del docs /s /q
REM the CNAME file is generated in the doc folder when added through the github
REM settings page. Apparently github uses this file to determine the custom
REM domain. The line above deletes the whole docs folder so we need to copy it... | choco install docfx -y
choco upgrade docfx -y
docfx docfx\docfx.json
del docs /s /q
REM the CNAME file is generated in the doc folder when added through the github
REM settings page. Apparently github uses this file to determine the custom
REM domain. The line above deletes the whole docs folder so we need to copy i... | Use choco upgrade iso update | Use choco upgrade iso update
| Batchfile | mit | charlenni/Mapsui,charlenni/Mapsui,pauldendulk/Mapsui |
00cb8d878ba3359820a36b18b98af928b041eae4 | src/Main/PublishNugetPackage.cmd | src/Main/PublishNugetPackage.cmd | @echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.2.0.0.1.nupkg
pause | @echo off
echo Press any key to publish
pause
".nuget\NuGet.exe" push Rssdp.2.0.0.2.nupkg
pause | Update publish bat for new release. | Update publish bat for new release.
| Batchfile | mit | Yortw/RSSDP,stickybun/RSSDP,Yortw/RSSDP |
37d16272fd55a2d62fff935c9370661ead03efb3 | ci/jenkins.cmd | ci/jenkins.cmd | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET MAVEN_HOME=C:\opt\apache\apache-maven-3.5.3
ECHO [behave.userdata] > %USERINI%
ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI%
ECHO cf_org =... | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET PYTHON_HOME=C:\Python36
SET MAVEN_HOME=C:\opt\apache\apache-maven-3.3.9
ECHO [behave.userdata] > %USERINI%
ECHO cf_apiurl = api.run.pcfbeta.... | Update paths to Python and Maven | Update paths to Python and Maven
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
75d4e7561b5de0f9311b524e0b8f1b8ddca03c33 | script/bin/bolt.bat | script/bin/bolt.bat | @echo off
setlocal enableextensions
set base=%~dp0
for %%i in (node.bat node.exe) do if not "%%~$PATH:i"=="" set node=%%~$PATH:i
if "%node%"=="" echo error: node.js is not on the system path && exit /b 1
"%node%" "%base%bolt.js" %*
| @echo off
setlocal enableextensions
set base=%~dp0
for %%i in (node.bat node.exe) do if not "%%~$PATH:i"=="" set node=%%~$PATH:i
if "%node%"=="" echo error: node.js is not on the system path && exit /b 1
"%node%" "%base%bolt.js" %*
| Convert windows batch script to use windows line endings. | Convert windows batch script to use windows line endings.
| Batchfile | bsd-3-clause | boltjs/bolt,boltjs/bolt,boltjs/bolt,boltjs/bolt |
148a5cff3165bccbd90b849e518e59dfccd0dd35 | bootstrap.bat | bootstrap.bat | @echo off
pushd %cd%
%~d0
cd %~dp0
echo Temporarily changing directory to %~dp0
if exist %USERPROFILE%\_vimrc goto GVIMRC
echo Installing _vimrc
echo set rtp+=%CD%\vim> %USERPROFILE%\_vimrc
echo source %CD%\vim\vimrc >> %USERPROFILE%\_vimrc
:GVIMRC
echo Installing _gvimrc
if exist %USERPROFILE%\_gvimrc g... | @echo off
pushd %cd%
%~d0
cd %~dp0
echo Temporarily changing directory to %~dp0
if exist %USERPROFILE%\_vimrc goto GVIMRC
echo Installing _vimrc
echo set rtp+=%CD%\vim> %USERPROFILE%\_vimrc
echo source %CD%\vim\vimrc >> %USERPROFILE%\_vimrc
:GVIMRC
if exist %USERPROFILE%\_gvimrc goto END
echo Installing ... | Move gvimrc log message so it doesn't print unnecessarily. | Move gvimrc log message so it doesn't print unnecessarily.
| Batchfile | mit | tomku/dotfiles,tomku/dotfiles,tomku/dotfiles |
d04cfe7bb5ecc375c921285e78576574e5326c1a | node/test.bat | node/test.bat | call :test 4.7.2
call :test 6.9.4
call :test 7.4.0
goto :eof
:test
setlocal
docker run node:%1 node --version
docker run node:%1-nano node --version
| call :test 4.7.2
call :test 6.9.4
call :test 7.4.0
goto :eof
:test
setlocal
docker run node:%1 node --version
docker run node:%1 npm --version
docker run node:%1-nano node --version
docker run node:%1-nano npm --version
| Test npm version, just rebuild with 693 | Test npm version, just rebuild with 693
| Batchfile | mit | StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows |
c9d87214a3574665e5e085b94ddbee00e7a52f00 | vim/setup.bat | vim/setup.bat | @echo off
if not defined HOME (
echo ϐ HOME `Ă܂
echo ϐ HOME _vimrc zu邽߂̃fBNgpXݒ肵Ă
exit /b
)
set MY_DIR=%~dp0
@echo on
echo source %MY_DIR%vimrc >> %HOME%\_vimrc
echo source %MY_DIR%gvimrc >> %HOME%\_gvimrc
| @echo off
if not defined HOME (
echo ϐ HOME `Ă܂
echo ϐ HOME _vimrc zu邽߂̃fBNgpXݒ肵Ă
exit /b
)
set MY_DIR=%~dp0
@echo on
echo source %MY_DIR%vimrc >> %HOME%\_vimrc
echo source %MY_DIR%gvimrc >> %HOME%\_gvimrc
mkdir %HOME%\temp\vim_backup
| Make temp directory in HOME | Make temp directory in HOME
| Batchfile | mit | maku77/dotfiles,maku77/dotfiles,maku77/dotfiles,maku77/dotfiles |
35ae17da45d6ef0f6b037c8f328ec9b13839789e | public/js/js.build.bat | public/js/js.build.bat | "C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=misc.js ^
--js=siggy.js ^
--js=siggy.helpers.js ^
--js=siggy.static.js ^
--js=siggy.intel.dscan.js ^
--js=siggy.intel.poses.js ^
--js=siggy.charactersettings.js ^
--js=siggy.notifications.js ^
--js=siggy.timer.js ^
--js=siggy.sigt... | java.exe -jar compiler.jar ^
--js=misc.js ^
--js=siggy.js ^
--js=siggy.helpers.js ^
--js=siggy.static.js ^
--js=siggy.intel.dscan.js ^
--js=siggy.intel.poses.js ^
--js=siggy.charactersettings.js ^
--js=siggy.notifications.js ^
--js=siggy.timer.js ^
--js=siggy.sigtable.js ^
--js=siggy.globalnotes.js ^
--js=s... | Use java instead of full path | Use java instead of full path
| Batchfile | mit | marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy |
c9a0c55645dbcc601082880eb0f03a508bc67dd1 | tools/Windows/Installer/VS2008/MakeBuildX64.bat | tools/Windows/Installer/VS2008/MakeBuildX64.bat | @rem Makes a build directory of the Tundra, so that you can run the NSIS install script
@echo off
cd ..\..\..\..
rmdir build /S /Q
md build
copy README.md build
copy LICENSE build\LICENSE.txt
copy WhatsNew.txt build
copy tools\Windows\Installer\VS2008\vcredist_x86.exe build\vcredist.exe
copy tools\Windows\Installer\oal... | @rem Makes a build directory of the Tundra, so that you can run the NSIS install script
@echo off
cd ..\..\..\..
rmdir build /S /Q
md build
copy README.md build
copy LICENSE build\LICENSE.txt
copy WhatsNew.txt build
copy tools\Windows\Installer\VS2008\vcredist_x64.exe build\vcredist.exe
copy tools\Windows\Installer\oal... | Copy correct version of VS redistributable. | Copy correct version of VS redistributable.
| Batchfile | apache-2.0 | pharos3d/tundra,jesterKing/naali,BogusCurry/tundra,pharos3d/tundra,realXtend/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,pharos3d/tundra,realXtend/tundra,BogusCurry/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,realXtend/tundra,jesterKing/naali,BogusCurry/tundra,jesterKing/naali,AlphaStaxLLC/tundra,jesterKing/naali,rea... |
a106e1d50e9047cafa74c29871413af020e71264 | public-events/build.cmd | public-events/build.cmd | @echo off
IF NOT EXIST %APPDATA%\npm\tsc.cmd (
ECHO You must have the TypeScript compiler installed. If npm is installed, run
ECHO npm install -g typescript
GOTO end
)
IF EXIST "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" (
CALL "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" -m amd --ou... | @echo off
IF EXIST "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" (
CALL "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" -m amd --outDir out\scripts\PublicEvents scripts\PublicEvents\PublicEventsSource.ts
) ELSE (
IF EXIST "%APPDATA%\npm\tsc.cmd" (
CALL %APPDATA%\npm\tsc -m amd --outDir ou... | Remove unnecessary npm tsc check. | Remove unnecessary npm tsc check. | Batchfile | mit | Microsoft/vsts-extension-samples,Microsoft/vso-extension-samples,Microsoft/vso-extension-samples,srdjan-bozovic/vso-extension-samples,Microsoft/vsts-extension-samples,Microsoft/vso-extension-samples,Microsoft/vsts-extension-samples,srdjan-bozovic/vso-extension-samples,srdjan-bozovic/vso-extension-samples |
6b6c22ce072bcf71df292ee4a1d2658563a503a5 | build.cmd | build.cmd | @echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
... | @echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
... | Build script error propagation fix | Build script error propagation fix
| Batchfile | apache-2.0 | vasiliy-vdovichenko/ncrontab,codesharpdev/ncrontab,DanThiffault/ncrontab,youniss2013/ncrontab,micheltol/ncrontab,klunwebale/ncrontab,JophyJob/ncrontab |
3dced04aabd84c5930c96d5ea1baa72537110af8 | resources/win/atom.cmd | resources/win/atom.cmd | @echo off
SET EXPECT_OUTPUT=
FOR %%a IN (%*) DO (
IF /I "%%a"=="-h" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="--help" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="-v" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="--version" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="-f" SET EXPECT_OUTPUT=YES
IF /I ... | @echo off
SET EXPECT_OUTPUT=
FOR %%a IN (%*) DO (
IF /I "%%a"=="-f" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="--foreground" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="-h" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="--help" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="-t" SET EXPECT_OUTPUT=YES
IF /I ... | Add -t and --test to expected output args | Add -t and --test to expected output args
| Batchfile | mit | mdumrauf/atom,ironbox360/atom,Galactix/atom,rlugojr/atom,hakatashi/atom,alfredxing/atom,synaptek/atom,0x73/atom,YunchengLiao/atom,Rychard/atom,folpindo/atom,Ingramz/atom,me-benni/atom,deoxilix/atom,efatsi/atom,ReddTea/atom,AlbertoBarrago/atom,lisonma/atom,lovesnow/atom,alfredxing/atom,Jonekee/atom,rsvip/aTom,Neron-X5/a... |
949d8d135a372024d6f0bdf2fb19ff703e102fd7 | RocketLeagueReplayParser/NugetPackagePublish.bat | RocketLeagueReplayParser/NugetPackagePublish.bat | @echo off
call ..\..\SetNugetApiKey.bat
del *.nupkg
nuget pack RocketLeagueReplayParser.csproj -Build -Prop Configuration=Release
nuget setApiKey %NUGET_API_KEY%
nuget push *.nupkg
pause | @echo off
call ..\..\SetNugetApiKey.bat
del *.nupkg
..\..\nuget pack RocketLeagueReplayParser.csproj -Build -Prop Configuration=Release
..\..\nuget setApiKey %NUGET_API_KEY%
..\..\nuget push *.nupkg
pause | Update nuget publish script for updated nuget.exe path | Update nuget publish script for updated nuget.exe path
| Batchfile | mit | jjbott/RocketLeagueReplayParser |
b0588575c86fd9a3e39b9378de957bacdfc91e3f | ghci.bat | ghci.bat | ghci.exe -isrc -i. src\Main.hs -fno-warn-overlapping-patterns -w -fwarn-unused-binds -fwarn-unused-imports -package haskell-src-exts-1.3.0
| ghci.exe -isrc -i. src\Main.hs -fno-warn-overlapping-patterns -w -fwarn-unused-binds -fwarn-unused-imports
| Remove the restriction to haskell-src-exts-1.3.0 in the .bat file | Remove the restriction to haskell-src-exts-1.3.0 in the .bat file | Batchfile | bsd-3-clause | eigengrau/hlint,mpickering/hlint,ndmitchell/hlint,gibiansky/hlint,ndmitchell/hlint,bitemyapp/hlint |
74acdac62e6becbbac882b4af9fe442ff19a20dc | oq-engine/oq-server.bat | oq-engine/oq-server.bat | @echo off
setlocal
set mypath=%~dp0
set PYTHONPATH=pkgs
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
set common="%COMMONPROGRAMFILES%"
) else (
set common="%COMMONPROGRAMFILES(x86)%"
)
REM Start the DbServer in background but within the same context
start "OpenQuake DB server" /B %common%\Python\2.7\pytho... | @echo off
setlocal
set mypath=%~dp0
set PYTHONPATH=pkgs
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
set common="%COMMONPROGRAMFILES%"
) else (
set common="%COMMONPROGRAMFILES(x86)%"
)
REM Start the DbServer in background but within the same context
start "OpenQuake DB server" /B %common%\Python\2.7\pytho... | Use same case for NUL | Use same case for NUL
| Batchfile | agpl-3.0 | gem/oq-installers,gem/oq-nsis,gem/oq-installers |
eaac46913ed0ad76eb2d22a0714da8d807e9ea10 | recipes/pythonfmu/bld.bat | recipes/pythonfmu/bld.bat | mkdir tmp-build
if errorlevel 1 exit 1
cd tmp-build
if errorlevel 1 exit 1
cmake ../pythonfmu/pythonfmu-export -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release
if errorlevel 1 exit 1
cmake --build . --config Release
if errorlevel 1 exit 1
cd ..
if errorlevel 1 exit 1
%PYTHON% -m pip install . -vv
if... | mkdir tmp-build
if errorlevel 1 exit 1
cd tmp-build
if errorlevel 1 exit 1
cmake ../pythonfmu/pythonfmu-export -G "Ninja" -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release
if errorlevel 1 exit 1
cmake --build . --config Release
if errorlevel 1 exit 1
cd ..
if errorlevel 1 exit 1
%PYTHON% -m pip insta... | Use Ninja as generator on Windows | Use Ninja as generator on Windows | Batchfile | bsd-3-clause | patricksnape/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,goanpeca/stag... |
a75f81f7387bea2a1abe98ebec44d39f53071f07 | 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 "Visual Studio 15 2017" -A x64 ..
if errorlevel 1 exit 1
cmake --bu... | :: 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 "Visual Studio 16 2019" -A x64 ..
if errorlevel 1 exit 1
cmake --bu... | Revert to Visual Studio 16 2019 | Revert to Visual Studio 16 2019
| Batchfile | bsd-3-clause | conda-forge/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes |
465391e0cc575d1454b847db2b4c7435ce9f831e | slave/run_webserver.bat | slave/run_webserver.bat | @echo off
set lighttpd_dir=%~dp0..\third_party\lighttpd\win
REM copy lighttpd.exe to lighttpd_server.exe, because we don't want it to be
REM killed by taskkill.
REM Since xcopy is stupid, tell it that lighttpd_server.exe is a file and not
REM a directory using the echo hack.
echo f | xcopy /D %lighttpd_dir%\l... | @echo off
set lighttpd_dir=%~dp0..\third_party\lighttpd\win
REM copy lighttpd.exe to lighttpd_server.exe, because we don't want it to be
REM killed by taskkill.
REM Since xcopy is stupid, tell it that lighttpd_server.exe is a file and not
REM a directory using the echo hack.
echo f | xcopy /D /Y %lighttpd_dir... | Add /Y to xcopy of cygwin1.dll in lighttpd dir | Add /Y to xcopy of cygwin1.dll in lighttpd dir
So that when we make a copy in the win\ folder the batch file
won't hang waiting for confirmation.
The 5-ish step process:
- Make this batch file not hang if the dest already exists
- Copy no_dll\cygwin1.dll to the win\ folder in the lighttpd DEPS tree
- Remove third_par... | Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
8eaf29c30e3cda54e25f6db96169dcc45fbfda1c | build.bat | build.bat | @setlocal
@cd SLOTaxService
@msbuild /t:build /p:Configuration=Release /nologo /v:m
@if %errorlevel% neq 0 exit /b %errorlevel%
@cd ..
@cd SLOTaxGuiTest
@msbuild /t:build /p:Configuration=Release /nologo /v:m
@if %errorlevel% neq 0 exit /b %errorlevel%
@cd ..
| @setlocal
@cd SLOTaxGuiTest40
@msbuild /t:build /p:Configuration=Release /nologo /v:m
@if %errorlevel% neq 0 exit /b %errorlevel%
@cd ..
@cd SLOTaxGuiTest
@msbuild /t:build /p:Configuration=Release /nologo /v:m
@if %errorlevel% neq 0 exit /b %errorlevel%
@cd ..
@rd FinalOutput /s /q
@md FinalOutput
@cd FinalOutput
@... | Build .Net 4.0 and .Net 4.5 projects | Build .Net 4.0 and .Net 4.5 projects
| Batchfile | mit | MPrtenjak/SLOTax |
74655e55d7cb01fa73d6a0262b91ac8e40197d05 | build.cmd | build.cmd | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Frame... | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Frame... | Rename Zafir packages to WebSharper | Rename Zafir packages to WebSharper
| Batchfile | apache-2.0 | intellifactory/websharper.jqueryui |
0deeb8cda4eed337293b58765b73394a72480ec1 | src/libGLESv2/shaders/generate_shaders.bat | src/libGLESv2/shaders/generate_shaders.bat | @ECHO OFF
REM
REM Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
REM Use of this source code is governed by a BSD-style license that can be
REM found in the LICENSE file.
REM
PATH %PATH%;%DXSDK_DIR%\Utilities\bin\x86
fxc /E standardvs /T vs_2_0 /Fh standardvs.h Blit.vs
fxc /E flipyvs /T ... | @ECHO OFF
REM
REM Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
REM Use of this source code is governed by a BSD-style license that can be
REM found in the LICENSE file.
REM
PATH %PATH%;%DXSDK_DIR%\Utilities\bin\x86
fxc /E standardvs /T vs_2_0 /Fh standardvs.h Blit.vs
fxc /E flipyvs /T vs_2_0 /Fh... | Fix mixed line endings in generateshader.bat | Fix mixed line endings in generateshader.bat
git-svn-id: 2a1ef23f1c4b6a1dbccd5f9514022461535c55c0@1552 736b8ea6-26fd-11df-bfd4-992fa37f6226
| Batchfile | bsd-3-clause | ehsan/angle,MIPS/external-chromium_org-third_party-angle,MSOpenTech/angle,android-ia/platform_external_chromium_org_third_party_angle,cvsuser-chromium/chromium-third-party_angle_dx11,geekboxzone/lollipop_external_chromium_org_third_party_angle,nandhanurrevanth/angle,jgcaaprom/android_external_chromium_org_third_party_a... |
c004edc9cb2c8cb37949065adc0c645808674064 | perforce/perforce_update.bat | perforce/perforce_update.bat | REM This Windows batch script logs into Perforce and updates a file named `last_updated` in the depot with the current date and timestamp.
REM This can be set up to be executed upon startup/login to avoid expiration of access permissions upon a lack of recent Perforce updates.
SET P4PORT=
SET P4CLIENT=
SET P4USER=
SET... | @ECHO OFF
SETLOCAL ENABLEEXTENSIONS
REM This Windows batch script logs into Perforce and updates a file named `last_updated` in the depot with the current date and timestamp.
REM This can be set up to be executed upon startup/login to avoid expiration of access permissions upon a lack of recent Perforce updates.
ECHO... | Add experience enhancers to perf_update | [Perforce] Add experience enhancers to perf_update
| Batchfile | mit | jleung51/scripts,jleung51/scripts,jleung51/scripts |
c30bbf2ef0c9fed05d85d4845dea459691545b12 | scripts/GenerateManifests.cmd | scripts/GenerateManifests.cmd | @@setlocal
@@set POWERSHELL_BAT_ARGS=%*
@@if defined POWERSHELL_BAT_ARGS set POWERSHELL_BAT_ARGS=%POWERSHELL_BAT_ARGS:"=\"%
@@powershell.exe -Command Invoke-Expression $('$args=@(^&{$args} %POWERSHELL_BAT_ARGS%);'+[String]::Join([char]10, $((Get-Content '%~f0') -notmatch '^^@@'))) & goto :EOF
if ($args.Length -lt 1 -o... | @@setlocal
@@set POWERSHELL_BAT_ARGS=%*
@@if defined POWERSHELL_BAT_ARGS set POWERSHELL_BAT_ARGS=%POWERSHELL_BAT_ARGS:"=\"%
@@powershell.exe -Command Invoke-Expression $('$args=@(^&{$args} %POWERSHELL_BAT_ARGS%);'+[String]::Join([char]10, $((Get-Content '%~f0') -notmatch '^^@@'))) & goto :EOF
if ($args.Length -lt 1 -o... | Add dummy resource file values for manifest | Add dummy resource file values for manifest
| Batchfile | unlicense | brian-dot-net/writeasync,brian-dot-net/writeasync,brian-dot-net/writeasync |
8c8fdd0a11747d9246e4e79b90fe43f22bb6f7be | recipes/pythonfmu/bld.bat | recipes/pythonfmu/bld.bat | mkdir tmp-build
if errorlevel 1 exit 1
cd tmp-build
if errorlevel 1 exit 1
cmake ..\pythonfmu\pythonfmu-export --debug-output -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release
more .\CMakeFiles\CMakeOutput.log
if errorlevel 1 exit 1
cmake --build . --config Release --verbose
if errorlevel 1 exit 1
cd ... | mkdir tmp-build
if errorlevel 1 exit 1
cd tmp-build
if errorlevel 1 exit 1
cmake --debug-output -G "Ninja" ^
-DPython3_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DCMAKE_BUILD_TYPE=Release ^
..\pythonfmu\pythonfmu-export
more .\CMakeFiles\CMakeOutput.log
if errorlevel 1 exit 1
REM cmake --build . --config R... | Switch back to Ninja as generator on win | Switch back to Ninja as generator on win | Batchfile | bsd-3-clause | jochym/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,Juanlu001/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,asmeurer/sta... |
a5185c4b5e2228e81718af3ab84e1bde6312866f | collate_commands.bat | collate_commands.bat | java -jar Collate-TUI.jar collate from src/main to collated/main include java, fxml, css
java -jar Collate-TUI.jar collate from src/test to collated/test include java
java -jar Collate-TUI.jar collate from unused to collated/unused include java, fxml, css | java -jar Collate-TUI.jar collate from src/main to collated/main include java, fxml, css
java -jar Collate-TUI.jar collate from src/test to collated/test include java
java -jar Collate-TUI.jar collate from unused to collated/unused include java, fxml, css
| Add newline to end of file | Add newline to end of file
| Batchfile | mit | CS2103JAN2017-F11-B3/main,CS2103JAN2017-F11-B3/main |
ed95004f3d0e4d5af48b76e130578c9827fd539a | Deploy.cmd | Deploy.cmd | @echo off
@rem Run from the root of master to deploy the currently built contents
@rem of the out\ directory to PPE or PROD. PPE or PROD must be the
@rem first parameter.
setlocal
set _env=%~1
if "%_env%"=="PPE" goto :StartDeployment
if "%_env%"=="PROD" goto :StartDeployment
echo ERROR: You must specify a deployment e... | @echo off
@rem Run from the root of master to deploy the currently built contents
@rem of the out\ directory to PPE or PROD. PPE or PROD must be the
@rem first parameter.
setlocal
set _env=%~1
if "%_env%"=="PPE" goto :StartDeployment
if "%_env%"=="PROD" goto :StartDeployment
echo ERROR: You must specify a deployment e... | Make deployment script more resilient | Make deployment script more resilient
| Batchfile | mit | erikma/ScratchPlus2016Project,6KidsGames/ZombAttack,erikma/ScratchPlus2016Project,6KidsGames/ZombAttack |
d8832ff5b615a6e4dac63c95b4da151f90b75123 | NuGet/pack.bat | NuGet/pack.bat | nuget pack Weingartner.Json.Migration.Fody.nuspec -OutputDirectory C:\Users\egger\Workspace\NuGet -Version 0.0.1-alpha | nuget pack Weingartner.Json.Migration.Fody.nuspec -OutputDirectory ..\..\NuGet -Version 0.0.1-alpha | Use relative path for local nuspec build script | Use relative path for local nuspec build script
| Batchfile | mit | Weingartner/Migrations.Json.Net |
a93e3a85fc27b30dde4d5fa41e0ff2e3e0afba7a | ci/tasks/gats-windows.bat | ci/tasks/gats-windows.bat | SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cli-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%GOPATH%\bin;%PATH%
SET PATH=C:\Program Files\7-Zip;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%
SET /p DOMAIN=<%CD%\bosh-... | SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cli-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%GOPATH%\bin;%PATH%
SET PATH=C:\Program Files\GnuWin32\bin;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%
SET /p DOMAIN=<%CD... | Revert "switching to 7z as well, sourceforge still broke" | Revert "switching to 7z as well, sourceforge still broke"
This reverts commit 9b2c32b64adb595d5c2e19ca7d0abf421eacc097.
| Batchfile | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
3fd79523c30f1784805750671f1f7e630544eded | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
call npm update azure-cli
) else (
call npm install azure-cli
)
if exist %1\node_modules\kudusync\bin\kudusync (
call npm update kudusync
) else (
call npm install kudusync
)
popd
| @echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update azure-cli
) else (
cmd /c npm install azure-cli
)
IF %ERRORLEVEL% NEQ 0 goto error
if exist %1\node_modules\kudusync\bin\kudusync (
cmd /c npm update kudusync
) else (
cmd /c npm install kudusync
)
popd
| Fix npm install intermittent failures. | Fix npm install intermittent failures.
| Batchfile | apache-2.0 | shrimpy/kudu,juvchan/kudu,uQr/kudu,EricSten-MSFT/kudu,badescuga/kudu,shrimpy/kudu,juoni/kudu,projectkudu/kudu,chrisrpatterson/kudu,mauricionr/kudu,puneet-gupta/kudu,barnyp/kudu,uQr/kudu,uQr/kudu,kali786516/kudu,EricSten-MSFT/kudu,dev-enthusiast/kudu,juvchan/kudu,chrisrpatterson/kudu,shibayan/kudu,duncansmart/kudu,barny... |
b1acbeb0396722e4d6d4dfee1d6475e6fe81f328 | build.bat | build.bat | set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%versio... | set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%versio... | Fix missing files in release ZIP | Fix missing files in release ZIP
| Batchfile | mit | berrnd/shareical,berrnd/shareical |
9f906ef9831a8f96bf4e67596bc901f0722a4518 | BuildPackage.cmd | BuildPackage.cmd | call "c:\Program Files (x86)\nodejs\nodevars.bat"
call npm.cmd install grunt-contrib-compress
call npm.cmd install grunt-contrib-clean
call npm.cmd install -g grunt-cli
call grunt.cmd
| call "c:\Program Files (x86)\nodejs\nodevars.bat"
call npm.cmd install grunt
call npm.cmd install grunt-contrib-compress
call npm.cmd install grunt-contrib-clean
call npm.cmd install -g grunt-cli
call grunt.cmd
| Fix build by installing grunt | Fix build by installing grunt
grunt should be installed locally in order to be able to build the package successfully.
| Batchfile | apache-2.0 | Icenium/appbuilder-sublime-package,Icenium/appbuilder-sublime-package |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.