commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
97c977b9f16a9291128cddf391c931408b9f4d36 | make.bat | make.bat | SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
del /F /Q windows_app_lifecycle.tgz
rmdir /S /Q packages
nuget restore || exit /b 1
MSBuild WindowsCircus.sln /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Builder.Tests\bin\Release\BuilderTests.dll || exit /b 1
packages\nspec.0.9.6... | SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
:: enable some features
SET dism=%WINDIR%\SysNative\dism.exe
%dism% /online /Enable-Feature /FeatureName:IIS-WebServer /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:IIS-WebSockets /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:Application-Server-WebServ... | Add back installation of windows features to build script | Add back installation of windows features to build script
| Batchfile | apache-2.0 | cloudfoundry-incubator/windows_app_lifecycle,cloudfoundry/windows_app_lifecycle,stefanschneider/windows_app_lifecycle |
4aef0caab757a8738159b0b51ea20ae515832272 | 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/b3494d6fc023f34cc0dded832110b608635cca40
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | @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/b1c12f132cf357238672dd57cd7213b1f282123a
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | Update kuduscript for function changes | Update kuduscript for function changes
| Batchfile | apache-2.0 | shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,shibayan/kudu |
4e1d42bc73309ea094adef7ad985b24fd814b285 | install_for_anaconda_users.bat | install_for_anaconda_users.bat | call conda create -n %1 python
call activate %1
call conda install -c conda-forge gmpy2
call pip install -r requirements.txt
call python setup.py %2
call python -m ipykernel install --user | Create bat as sh might not be available | Create bat as sh might not be available
| Batchfile | apache-2.0 | OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft,OpenMined/PySyft | |
89c352dfac9b7b7bfa5befe40880b57653f3eda1 | build_release.bat | build_release.bat | # Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\std... | REM Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\s... | Fix build/test script on Windows | Fix build/test script on Windows
| Batchfile | lgpl-2.1 | roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,MariaDB/mariadb-connector-j,roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,roidelapluie/mariadb-connector-j,roidelapluie/mariadb-connector-j,MariaDB/mariadb-connector-j |
c48454d08781ccfa4a81db45ea006b0997bde205 | dev/compile_shaders.bat | dev/compile_shaders.bat | T:/Applications/VulkanSDK/1.0.61.1/Bin/glslangValidator.exe -V -o ../source/core/visualizer/shaders/fullscreen_triangle_vs.spv -S vert ../source/core/visualizer/shaders/fullscreen_triangle_vs.glsl
T:/Applications/VulkanSDK/1.0.61.1/Bin/glslangValidator.exe -V -o ../source/core/visualizer/shaders/final_resolve_ps.spv -S... | Create a non-portable bat file for compiling the shader files | Create a non-portable bat file for compiling the shader files
| Batchfile | apache-2.0 | RichieSams/lantern,RichieSams/lantern | |
eb7a71d34fbcd969119e72552e639139b78b5939 | py_env_switch.bat | py_env_switch.bat | @echo off
set v_params=%*
set v_params=%v_params:\=/%
set v_params=%v_params:c:=/mnt/c%
set v_params=%v_params:"=\"%
bash.exe -c "python3 %v_params%" | Add VSCode python env switch batch file. | Add VSCode python env switch batch file.
| Batchfile | mit | NathanMH/scripts,NathanMH/scripts,NathanMH/scripts | |
a25e9fe83ff6bfc57b4bcb247618f8d50c4de046 | setup.bat | setup.bat | @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.... | @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.... | Put quotes around PYTHONPATH to handle the case where there's a space in the name | Put quotes around PYTHONPATH to handle the case where there's a space in
the name
| Batchfile | agpl-3.0 | makerbot/conveyor,makerbot/conveyor,makerbot/conveyor,makerbot/conveyor |
6955978a6246243106588b817c271060ed12d3b6 | build-local.bat | build-local.bat | @ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
::SET PATH=C:\m... | @ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
SET PATH=C:\mb\... | Remove commented out line in windows build script. History is what git is for. | Remove commented out line in windows build script. History is what git is for.
| Batchfile | bsd-2-clause | Project-OSRM/osrm-backend,neilbu/osrm-backend,deniskoronchik/osrm-backend,duizendnegen/osrm-backend,beemogmbh/osrm-backend,hydrays/osrm-backend,raymond0/osrm-backend,bjtaylor1/osrm-backend,arnekaiser/osrm-backend,raymond0/osrm-backend,KnockSoftware/osrm-backend,yuryleb/osrm-backend,oxidase/osrm-backend,neilbu/osrm-back... |
19d3951e248b601ddf12eb349781ce2cb43b06be | docs/users-guide-windows.bat | docs/users-guide-windows.bat | @echo off
REM Setup for running on Neil Mitchell's machine
REM To run on other machines, install the appropriate things and
REM Change the environment variables at the top
REM REQUIRES:
REM Internet Connection
REM sed
REM --------------------------------------------------------------------------
REM Paramete... | Add a batch file to automate compiling the Windows Help File (CHM) | Add a batch file to automate compiling the Windows Help File (CHM) | Batchfile | bsd-3-clause | FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs | |
f44c077ea4a1783bfd7b704f22653639f5f73bab | mb-gui.bat | mb-gui.bat | @echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
se... | @echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
se... | Set Default GUI to Pyblish QML | Set Default GUI to Pyblish QML
| Batchfile | mit | mottosso/mindbender-setup,mindbender-studio/setup,mindbender-studio/setup,mindbender-studio/setup,mottosso/mindbender-setup,mottosso/mindbender-setup |
6e671266b095a3e1f3819cfc8da7dcaa8ea1d23e | make-windows-executables.bat | make-windows-executables.bat | rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
| rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
del __init__.pyc | Update Windows build script to remove __init__.pyc. | Update Windows build script to remove __init__.pyc.
| Batchfile | mit | goelakash/retriever,davharris/retriever,bendmorris/retriever,henrykironde/deletedret,davharris/retriever,goelakash/retriever,davharris/retriever,embaldridge/retriever,embaldridge/retriever,bendmorris/retriever,bendmorris/retriever,henrykironde/deletedret,embaldridge/retriever |
c6ba542aa01fcec159c084117305fb8715bc558f | test.cmd | test.cmd | @echo off
setlocal
cd "%~dp0"
chcp 1252 > nul
if exist tools\NUnit.Runners goto :test
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
md tools
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory tools || exit /b 1
move .\tools\NUnit.Runners.2.6.4 .\tools\NUnit.Runners
if no... | @echo off
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
setlocal
set NUNIT_CONSOLE_PATH=tools\NUnit.Runners\tools\nunit-console.exe
if exist %NUNIT_CONSOLE_PATH% goto :test-all
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDir... | Test script review for redundancies | Test script review for redundancies
| Batchfile | apache-2.0 | morelinq/MoreLINQ,morelinq/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ |
8b0dd85fb404434044d3805eba9832238a9240c5 | scripts/lib_build.cmd | scripts/lib_build.cmd | :: Generic script template for building Visual Studio projects using MSBuild.
@echo off
setlocal
set config=%1
if NOT defined config (
set config=Debug
)
set sku=%2
if NOT defined sku (
set sku=pc
)
:: Map sku to VS platform config
set sku_platform=%sku%
if %sku% == pc (
set sku_platform=Win32
) else if %sku% == ... | Add template for building msbuild projects | Add template for building msbuild projects
You probably won't use this directly. Just copy it to your
company-specific bundle.
| Batchfile | mit | idbrii/vim-vshelp | |
c6a2f12a42d8b47718d159d849286d1511e9cd14 | host/scripts/install_cygwin.bat | host/scripts/install_cygwin.bat | @echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <cy@rossignols.me>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync:... | @echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <cy@rossignols.me>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync:... | Add git to default cygwin installation | Add git to default cygwin installation
Signed-off-by: Cy Rossignol <31ace4ad1831aae866cd7951a842ca3e38f21981@rossignols.me>
| Batchfile | mit | cyrossignol/kickboxer |
51cdce93652a1d0d6c99ca06009d8bc57e2c6c36 | 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 -Version 1.1.1 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | @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.2 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed | Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed
| Batchfile | bsd-2-clause | loresoft/msbuildtasks |
2a6a668fd09472b07df7b6c8bad8a8e1880e2afe | scripts/windows/startNode.bat | scripts/windows/startNode.bat | @echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
goto end
:doit
SETLOCAL
c... | @echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
echo Node started with a ran... | Change the script to be able to launch it when clicking on it | Change the script to be able to launch it when clicking on it
git-svn-id: 9146c88ff6d39b48099bf954d15d68f687b3fa69@74 28e8926c-6b08-0410-baaa-805c5e19b8d6
| Batchfile | agpl-3.0 | ow2-proactive/scheduling,fviale/scheduling,laurianed/scheduling,fviale/scheduling,tobwiens/scheduling,lpellegr/scheduling,paraita/scheduling,yinan-liu/scheduling,zeineb/scheduling,lpellegr/scheduling,laurianed/scheduling,fviale/scheduling,paraita/scheduling,ow2-proactive/scheduling,ow2-proactive/scheduling,lpellegr/sch... |
50e39dc1b8573b6655197e1edc393044251eedaa | difido-server/src/main/etc/start.bat | difido-server/src/main/etc/start.bat | @echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xm... | @echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xm... | Support for plugins in Windows | Support for plugins in Windows
| Batchfile | apache-2.0 | Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports |
bc6e3c2e871ae1c8b238543c38cd005a54833045 | set-global.bat | set-global.bat | @ECHO OFF
:USAGE
:START
:INITIALIZE
SETLOCAL ENABLEDELAYEDEXPANSION
SET GLOBALS_FILE=%1
SET VAR_NAME=%2
SET VALUE=%3
:CODE
IF NOT EXIST %GLOBALS_FILE% (
COPY /Y NUL %GLOBALS_FILE% > NUL 2>&1
)
ECHO %VAR_NAME% %VALUE% >> %GLOBALS_FILE%
:RETURN
ENDLOCAL
:EOF
@ECHO ON
| Add global variables to file | Add global variables to file
| Batchfile | bsd-2-clause | phoenix-star/batch-gc | |
7712e9c6af17721b3a3eb17227a47b9d1015a317 | batch/remove_old_user_account_pictures.bat | batch/remove_old_user_account_pictures.bat | @ECHO OFF
SETLOCAL
SETLOCAL EnableExtensions EnableDelayedExpansion
SET /P name="Enter your Windows username: "
ECHO You have entered [%name%]
SET /P answer="Do you want to continue (Y/n)? "
IF /I {!answer!}=={n} (GOTO :EOF)
IF /I {!answer!}=={no} (GOTO :EOF)
DEL "C:\Users\%name%\AppData\Roaming\Microsoft\Windows\Ac... | Add script to remove Windows 10 old user account pictures | Add script to remove Windows 10 old user account pictures
| Batchfile | mit | teddy-gustiaux/scripts,teddy-gustiaux/scripts | |
dc261afb272e37618c6ce244f0b35a5f566a338f | bin/windev_nom.bat | bin/windev_nom.bat | @echo off
REM Automated Windows build script for nomlib -- windev.local
REM NOTE: This script is intended to be ran from the project's root
REM directory, i.e.: %HOME%/Projects/nomlib.git
REM virgo.local source repository
unison nomlib
IF NOT EXIST build mkdir build
REM pushd build
cd build
if errorlevel 0 call ..... | Add automated Windows build script using msbuild | Add automated Windows build script using msbuild
This is the local configuration used on windev.local.
| Batchfile | bsd-2-clause | i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib | |
8ec822497f1e8a969cd854363d03f7575c7a2b95 | make_w64.cmd | make_w64.cmd | @ECHO OFF
TITLE Windows Driver Kit 7.1.0
REM set target=i386
set target=amd64
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\%target%
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /N... | @ECHO OFF
TITLE Windows Driver Kit 7.1.0
set target=amd64
REM set target=i386
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\amd64
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /... | Make it easier to test 32-bit builds. | Make it easier to test 32-bit builds.
| Batchfile | cc0-1.0 | cxd4/n64-keyboard,cxd4/n64-keyboard,cxd4/n64-keyboard |
efc34b5f3b38d70fc64e6595c95a74a919a40938 | dev/install.cmd | dev/install.cmd | @echo off
echo Update environment...
echo Update Ruby...
call gem update --system
echo Update Ruby Sass...
call gem update sass
echo Update Bourbon...
call gem update bourbon
call gem update neat
call gem update bitters
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
cal... | @echo off
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
call npm install --save-dev
pause | Remove Ruby update from unstall | Remove Ruby update from unstall
| Batchfile | mit | ideus-team/html-framework,ideus-team/html-framework |
6c5a246218049df2f6442c2e175b03e49d2fa2cd | Dependencies/setupHDF5.bat | Dependencies/setupHDF5.bat | @ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin peter.nordin@liu.se
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building 64-bit version of FMILibrary
echo ======================
set OLDPATH=%PATH%
... | @ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin peter.nordin@liu.se
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building the HDF5 library and tools
echo ======================
set OLDPATH=%PATH%
ca... | Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build | Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build
| Batchfile | apache-2.0 | Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan |
43571eaad2a9fe88ccf4d5f8b689f7dbeca2516d | ci/msvc_install.bat | ci/msvc_install.bat | mkdir build
#mkdir 3rdparty\build
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T
Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T
#Robocopy "./tools/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% LSS 8 g... | mkdir build
REM mkdir 3rdparty\build
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T
Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T
REM Robocopy "./tools/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% L... | Correct mistake in windows bat file | Correct mistake in windows bat file
| Batchfile | apache-2.0 | dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new |
2438540028dcc1c3125c1cabe1d74c9b79914027 | src/packall.cmd | src/packall.cmd | @ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A"
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~dp0..\bin\Debug\AnyCPU\%~n1" | @ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A" "%~dp0.."
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~f2\bin\Debug\AnyCPU\%~n1" | Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .." | Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .."
| Batchfile | mit | CommonBuildToolset/CBT.Modules,jeffkl/CBT.Modules |
59cc9b35715fe629e81b1303dd15e6f2b2b82ccc | conda.recipe/bld.bat | conda.recipe/bld.bat | cd %RECIPE_DIR%\..
%PYTHON% make_version.py
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
| cd %RECIPE_DIR%\..
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
| Remove make_version from windows' recipe | Remove make_version from windows' recipe
| Batchfile | bsd-3-clause | Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client |
3c6d194974b16b24dfc045f648714098f2735616 | tests/Make-check-cl.bat | tests/Make-check-cl.bat | REM Execute the test suite for Microsoft Visual Studio
REM
REM Load Micosoft Visual Studio environement file.
IF EXIST "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" (
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsa... | Add script to launch the test suite with VC++ | Add script to launch the test suite with VC++
| Batchfile | bsd-2-clause | P-p-H-d/mlib,P-p-H-d/mlib | |
c46fb024a64fc83b953f97a34bb7dd9f0b7921e4 | make.bat | make.bat | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Re... | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:build
cm... | Use 64-bit build for windows (assuming community or pro edition) | Use 64-bit build for windows (assuming community or pro edition)
| Batchfile | apache-2.0 | zhaozg/luvi,virgo-agent-toolkit/luvi,joerg-krause/luvi,joerg-krause/luvi,virgo-agent-toolkit/luvi,brimworks/luvi,zhaozg/luvi,kidaa/luvi,luvit/luvi,luvit/luvi,brimworks/luvi |
1549a69eb21a04b21dab1eed8d26a68c18c8014f | src/build.bat | src/build.bat | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:L... | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:L... | Update bat file by new NuGet version | Update bat file by new NuGet version
| Batchfile | mit | paymentwall/paymentwall-dotnet |
ae9309087c54c666f5e6158e06a2b809f69a3948 | Android/CopyData.bat | Android/CopyData.bat | md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
| md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
rd /S /Q assets\CoreData\Shaders\HLSL
| Delete HLSL directory when copying Android assets. | Delete HLSL directory when copying Android assets.
| Batchfile | mit | abdllhbyrktr/Urho3D,cosmy1/Urho3D,rokups/Urho3D,victorholt/Urho3D,urho3d/Urho3D,victorholt/Urho3D,c4augustus/Urho3D,codemon66/Urho3D,luveti/Urho3D,eugeneko/Urho3D,SuperWangKai/Urho3D,SuperWangKai/Urho3D,victorholt/Urho3D,cosmy1/Urho3D,weitjong/Urho3D,MeshGeometry/Urho3D,SirNate0/Urho3D,299299/Urho3D,codedash64/Urho3D,k... |
73eba6c7e26070852c0cc4a7f4ec8455c74b91de | recipes/jupyterlab-sos/bld.bat | recipes/jupyterlab-sos/bld.bat | :: Packs and installs the extension, nodejs extension rebuild is done automatically
:: on jupyterlab startup, when the new extension is detected or was removed
CALL "%PREFIX%\Scripts\jupyter-labextension" install . --no-build || EXIT /B 1
:: Shared file not to be included.
del /Q "%PREFIX%\share\jupyter\lab\settings\b... | Add windows build batch file | Add windows build batch file
| Batchfile | bsd-3-clause | dschreij/staged-recipes,dschreij/staged-recipes,ReimarBauer/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-... | |
49bb646254fae8539b1489c75e0bfd794816b196 | exec_wrappers/templates/run-in_conda.bat | exec_wrappers/templates/run-in_conda.bat | @echo off
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@endlocal & (
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activa... | @echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@... | Fix conda wrapper for Windows | Fix conda wrapper for Windows | Batchfile | mit | gqmelo/exec-wrappers,gqmelo/exec-wrappers |
7eb297ff8f6bae04c1deec045de7d5ea6cf4aa4c | test.bat | test.bat | java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/db3-3-11.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestP... | java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestPackage
| Remove inclusion db3-3-11.jar in the classpath | Remove inclusion db3-3-11.jar in the classpath
git-svn-id: 227c23bb629cf7bef445105b977924772e49ae4f@1111499 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | danc86/jena-core,danc86/jena-core |
1211b225505bbe9405ea8c0246a2b57541ff6ced | build.bat | build.bat | c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
hg history > \\ironpaw\pub\jasons\arcrest\changelog.txt
| c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
copy tests.py \\ironpaw\pub\jasons\arcrest\tests.py
hg history > \\ironpaw\pub\jasons\arcrest\ch... | Copy tests to ironpaw too | Copy tests to ironpaw too
| Batchfile | apache-2.0 | Esri/arcpy-server-util-rest,jasonbot/arcrest,jasonbot/arcrest |
f2af483214b5e3a8e225d1e9f3c0ad221edd922b | build.cmd | build.cmd | @echo off
:Build
cls
if not exist tools\FAKE.Core\tools\Fake.exe (
"tools\nuget\nuget.exe" "install" "FAKE.Core" "-OutputDirectory" "tools" "-ExcludeVersion" "-Prerelease"
)
SET TARGET="Default"
IF NOT [%1]==[] (set TARGET="%1")
SET BUILDMODE="Release"
IF NOT [%2]==[] (set BUILDMODE="%2")
"tools\FAKE.Core\tools\... | @echo off
SET MinimalFAKEVersion=639
SET FAKEVersion=1
cls
if exist tools\FAKE.Core\tools\PatchVersion.txt (
FOR /F "tokens=*" %%i in (tools\FAKE.Core\tools\PatchVersion.txt) DO (SET FAKEVersion=%%i)
)
if %MinimalFAKEVersion% lss %FAKEVersion% goto Build
if %MinimalFAKEVersion%==%FAKEVersion% goto Build
"t... | Check if we are already on the minimal FAKE version - otherwise patch it. | Check if we are already on the minimal FAKE version - otherwise patch it.
| Batchfile | mit | thedillonb/octokit.net,nsnnnnrn/octokit.net,octokit/octokit.net,octokit-net-test/octokit.net,thedillonb/octokit.net,cH40z-Lord/octokit.net,ivandrofly/octokit.net,editor-tools/octokit.net,fffej/octokit.net,devkhan/octokit.net,rlugojr/octokit.net,adamralph/octokit.net,dampir/octokit.net,M-Zuber/octokit.net,Red-Folder/oct... |
7723715d8e996d9389f0961571ba663b6016029a | bin/password.bat | bin/password.bat | @echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0-SNAPSHOT.jar;%LIBDIR%\vt-crypt-2.1.1.jar;%L... | @echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set LIBDIR=%VTPASS_HOME%\lib
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0.jar;%LIBDIR%\v... | Update script for latest vt-dictionary. | Update script for latest vt-dictionary.
| Batchfile | apache-2.0 | dfish3r/vt-password,dfish3r/vt-password |
b2bc88148c39c449cb198e0ee1099bc446890a25 | 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"
java -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End1
:No1
ECHO Mis... | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
"%JAVA_HOME%\bin\java" -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End... | Use JAVA_HOME for schema creation | Use JAVA_HOME for schema creation
| Batchfile | apache-2.0 | aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server |
539a7f48e214611cf12c677e661e54d97d8da4c3 | MakeSharpDX.cmd | MakeSharpDX.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | Switch to Visual Studio 2012 for build release | [Build] Switch to Visual Studio 2012 for build release
| Batchfile | mit | tomba/Toolkit,sharpdx/Toolkit,sharpdx/Toolkit |
7541ff308fcf88004a322f4a383308fb43bfb35a | deploy.sh.cmd | deploy.sh.cmd | git checkout gh-pages
git merge master
npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench
git commit -a -m "Update" && git push || git checkout master
| git checkout gh-pages
git merge master
npm start mol mol/app/hello mol/app/supplies mol/app/habhub mol/app/todomvc mol/perf/render mol/perf/uibench mol/app/bench mol/app/taxon mol/app/users
git commit -a -m "Update" && git push || git checkout master
| Build more apps on deploy. | Build more apps on deploy.
| Batchfile | mit | eigenmethod/mol,nin-jin/mol,eigenmethod/mol,eigenmethod/mol,nin-jin/mol,nin-jin/mol |
d517a69127c8e1190b85d72ae98cbd1283e78877 | Scripts/SetDirectories.bat | Scripts/SetDirectories.bat | ::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
SET KSPPATH=C... | ::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
::SET KSPPATH... | Use the default directories for KSP in the master branch's batch files. | Use the default directories for KSP in the master branch's batch files.
| Batchfile | mit | gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer |
e5b6619b7eacf0b341b84b76725da69106a1f420 | public/js/js.thirdparty.bat | public/js/js.thirdparty.bat | "C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.autocomplete.js ^
--js=jquery/jquery.tablesor... | "C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.autocomplete.js ^
--js=jquery/jquery.tablesor... | Remove another jsBeizer reference as we weren't using it | Remove another jsBeizer reference as we weren't using it
| Batchfile | mit | marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy |
aec4778072612e715a0c2cc67f20258bb3fbf103 | ruby/buildWithExtConf.bat | ruby/buildWithExtConf.bat | REM This assumes that libutil.a has been previously build with cmake and is
REM available in ..\build
del /f RIBClientRUBY_wrap.cxx *.def *.pdb *.obj
swig -ruby -includeall -c++ -I..\utils -o RIBClientRUBY_wrap.cxx RIBClient.i
REM set USE_PRMAN=1
REM ruby extconf.rb --with-rman-dir=$RMANTREE --with-utils-include=..... | REM This assumes that libutil.a has been previously build with cmake and is
REM available in ..\build
del /f RIBClientRUBY_wrap.cxx *.def *.pdb *.obj
swig -ruby -includeall -c++ -I..\utils -o RIBClientRUBY_wrap.cxx RIBClient.i
REM set USE_PRMAN=1
REM ruby extconf.rb --with-rman-dir=$RMANTREE --with-utils-include=..... | Build using utils library being build with CMake | Build using utils library being build with CMake
| Batchfile | bsd-3-clause | nyue/ribclients,nyue/ribclients,nyue/ribclients,nyue/ribclients,nyue/ribclients,nyue/ribclients,nyue/ribclients |
aa6ae2fad9a61378ef0fb5a16b64d846a0226f75 | cython_build.bat | cython_build.bat | "C:\Program Files (x86)\Python 3.5\python.exe" setup.py build_ext --inplace
"C:\Program Files\Python 3.5\python.exe" setup.py build_ext --inplace | rmdir /s /q build
del vapoursynth.*.pyd
"C:\Program Files (x86)\Python 3.5\python.exe" setup.py build_ext --inplace
"C:\Program Files\Python 3.5\python.exe" setup.py build_ext --inplace
pause | Make cython always rebuild modules on windows | Make cython always rebuild modules on windows
| Batchfile | lgpl-2.1 | Kamekameha/vapoursynth,vapoursynth/vapoursynth,Kamekameha/vapoursynth,vapoursynth/vapoursynth,Kamekameha/vapoursynth,vapoursynth/vapoursynth,vapoursynth/vapoursynth,Kamekameha/vapoursynth |
ba4bf33af94616fc9162645ad6d8d5888a4066c0 | conda/bld.bat | conda/bld.bat | setlocal enableextensions
if "%PY_VER%" == "3.4" (
set MSVC_VER="10.0"
) else (
if "%PY_VER%" == "3.5" (
set MSVC_VER="14.0"
) else (
set MSVC_VER="9.0"
)
)
set EXTRA_ARGS=""
if %ARCH% EQU 64 (
set EXTRA_ARGS="address-model=64"
)
python -c "from __future__ import p... | setlocal enableextensions
if "%PY_VER%" == "3.4" (
set MSVC_VER="10.0"
) else (
if "%PY_VER%" == "3.5" (
set MSVC_VER="14.0"
) else (
set MSVC_VER="9.0"
)
)
set EXTRA_ARGS=""
if %ARCH% EQU 64 (
set EXTRA_ARGS="address-model=64"
)
%PYTHON% -c "from __future__ import... | Use conda Python rather than system | Use conda Python rather than system
| Batchfile | bsd-3-clause | menpo/conda-boost |
a64f248276aa8dd45d8266ad5c79e9c4109ef035 | windows/replace-my-vim.bat | windows/replace-my-vim.bat | @echo off
REM Reference: http://www.wilsonmar.com/1envvars.htm
set home=%USERPROFILE%
copy /Y .\dist\ctags_lang %home%\.ctags
copy /Y .vimrc %home%\.vimrc
copy /Y .vimrc.plugins %home%\.vimrc.plugins
copy /Y .vimrc.local %home%\.vimrc.local
copy /Y .vimrc.plugins.local %home%\.vimrc.plugins.local
rmdir /S /Q %home%\... | @echo off
REM Reference: http://www.wilsonmar.com/1envvars.htm
set home=%USERPROFILE%
copy /Y .\dist\ctags_lang "%home%\.ctags"
copy /Y .vimrc "%home%\.vimrc"
copy /Y .vimrc.plugins "%home%\.vimrc.plugins"
copy /Y .vimrc.local "%home%\.vimrc.local"
copy /Y .vimrc.plugins.local "%home%\.vimrc.plugins.local"
rmdir /S ... | Add quotation mark to windows path | Add quotation mark to windows path
In case the user's name contains space, the command to
replace the vimrc will fail. Adding quotation mark will
fix this issue
Signed-off-by: Zhenfang Wei <463949f2109b72a1c21e4b94cb6d47e3b151eabc@gmail.com>
| Batchfile | mit | YuJianrong/exvim-main,exvim/main,elleryq/exvim |
317ba2f1b46b5420c60e6a253a0b9938f8dbdde6 | install.bat | install.bat |
:: Checks in which DB2 version the utility will be installed.
:: DB2 v10.1 is the default version.
if "%1" EQU "" goto v10.1
if /I "%1" EQU "-v10.1" goto v10.1
if /I "%1" EQU "-v9.7" goto v9.7
:: DB2 v10.1.
:v10.1
db2 -tf Tables.sql
db2 -tf Objects.sql
db2 -td@ -f Tools.sql
db2 -td@ -f AdminHeader.sql
db2 -td@ -f Adm... | :: Checks if there is already a connection established
db2 connect
if %ERRORLEVEL% EQU 0 (
goto version
) else (
echo Please connect to a database before the execution of the installation.
goto exit
)
:version
:: Checks in which DB2 version the utility will be installed.
:: DB2 v10.1 is the default version.
if "%1"... | Install checks for a connection | Install checks for a connection
| Batchfile | bsd-2-clause | angoca/log4db2 |
76d5e20e965d120bb0f46b2dc13bcc70b532227d | build-spotify-json.bat | build-spotify-json.bat | cd lib\spotify-json
git submodule update --init
rmdir build32 /S /Q
mkdir build32
cd build32
cmake .. -DBoost_NO_BOOST_CMAKE=TRUE ^
-DBOOST_ROOT=..\..\..\packages\boost.1.62.0.0\lib\native
cmake --build . --config Debug
cmake --build . --config Release
cd ..\..\.. | Add batch file to autobuild spotify-json | Add batch file to autobuild spotify-json
And leave the .lib files in a directory that agrees with
spotify-json.props
| Batchfile | mit | Wangscape/Wangscape,serin-delaunay/Wangscape,Wangscape/Wangscape,serin-delaunay/Wangscape,Wangscape/Wangscape | |
fd858b78bfab213ba2832259256336a68ba80a48 | build.bat | build.bat | @echo off
setlocal
echo ====================
echo TWC -- Build Batch
echo ====================
echo.
set DEFINES=
set CCFLAGS= /MT %DEFINES% /Gm- /WX /W4 /wd4201 /wd4100 /wd4189 /wd4505 /wd4706 /wd4996 /wd4127 /wd4244 /wd4200 /wd4204
set LIBS= libcurl.lib
IF NOT EXIST build mkdir build
pushd build
... | @echo off
setlocal
echo ====================
echo TWC -- Build Batch
echo ====================
echo.
set DEFINES=
set CCFLAGS= /MT %DEFINES% /Gm- /WX /W4 /wd4201 /wd4100 /wd4189 /wd4505 /wd4706 /wd4996 /wd4127 /wd4244 /wd4200 /wd4204
set LIBS= libcurl.lib
IF NOT EXIST build mkdir build
pushd build
... | Use xcopy instead of cp | Use xcopy instead of cp
| Batchfile | mit | Chronister/twc |
9ba5daa863d59d5b2a7bd8fabdd9caa0b8fe4521 | build.bat | build.bat | @mkdir .shake 2> nul
@set ghcArgs=--make ^
-Wall ^
src/Main.hs ^
-isrc ^
-rtsopts ^
-with-rtsopts=-I0 ^
-outputdir=.shake ^
-j ^
-O ... | @mkdir .shake 2> nul
@set ghcArgs=--make ^
-Wall ^
src/Main.hs ^
-isrc ^
-rtsopts ^
-with-rtsopts=-I0 ^
-outputdir=.shake ^
-j ^
-O ... | Reset GHC_PACKAGE_PATH varialbe (5th try). | Reset GHC_PACKAGE_PATH varialbe (5th try).
See #110.
| Batchfile | bsd-3-clause | snowleopard/hadrian,izgzhen/hadrian,sdiehl/ghc,sdiehl/ghc,snowleopard/shaking-up-ghc,sdiehl/ghc,sdiehl/ghc,bgamari/shaking-up-ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc |
7f39280adc31bb0c9daedf8e88334845997f57e6 | run-jenkins-build.bat | run-jenkins-build.bat |
set MSBUILD_EXE=C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild
cd 3rd-party\UnitTest++
%MSBUILD_EXE% UnitTest++.vsnet2008.sln /p:Configuration=Debug /target:Clean
%MSBUILD_EXE% UnitTest++.vsnet2008.sln /p:Configuration=Release /target:Clean
%MSBUILD_EXE% UnitTest++.vsnet2008.sln /p:Configuration=Debug
%MSBUI... | Add a DOS .bat script to run CI build | Add a DOS .bat script to run CI build
| Batchfile | apache-2.0 | libamqp/libamqp,libamqp/libamqp,libamqp/libamqp,libamqp/libamqp | |
68f40c5cafda58dd295285730ee6186e2066d643 | marks.bat | marks.bat | @echo off
if not exist "%~dp0marks\*.mark" echo No marks exist.&&exit /b 1
for /f "delims=" %%f in ('dir /b "%~dp0marks\*.mark"') do (for /F "usebackq delims=" %%i in ("%~dp0marks\%%f") do echo %%~nf =^> %%i)
| @echo off
if not exist "%~dp0marks\*.mark" echo No marks exist.&&exit /b 1
for /f "delims=" %%f in ('dir /b "%~dp0marks\*.mark"') do (for /F "usebackq delims=" %%i in ("%~dp0marks\%%f") do echo %%~nf -^> %%i)
| Change arrow to match original. | Change arrow to match original.
| Batchfile | mit | dictoon/marks |
948caf38b90f5feb167e40e087075f4ce28c5504 | src/resources/forrest-shbat/bin/forrest.bat | src/resources/forrest-shbat/bin/forrest.bat | @echo off
setlocal
Rem ----- set the current working dir as the PROJECT_HOME variable ----
call "%FORREST_HOME%\bin\setpwdvar.bat"
set PROJECT_HOME="%PWD%"
Rem ----- use the location of this script to infer $FORREST_HOME -------
set FORREST_HOME=%~dp0\..
Rem ----- set the ant file to use --------------------------... | @echo off
setlocal
Rem ----- set the current working dir as the PROJECT_HOME variable ----
call "%FORREST_HOME%\bin\setpwdvar.bat"
set PROJECT_HOME="%PWD%"
Rem ----- use the location of this script to infer $FORREST_HOME -------
set FORREST_HOME=%~dp0\..
Rem ----- set the ant file to use --------------------------... | Stop script breaking on XP. Thanks to Chanshin Lee | Stop script breaking on XP. Thanks to Chanshin Lee
git-svn-id: fea306228a0c821168c534b698c8fa2a33280b3b@7564 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest |
a276dc1a1df15b744fb4e8a21ad13e43365c4e22 | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Remove w9xopen.exe and add README.txt to Windows build | Remove w9xopen.exe and add README.txt to Windows build
| Batchfile | apache-2.0 | google/namebench,google/namebench,protron/namebench,google/namebench,rogers0/namebench |
f36278bce4c639bcbf3b40944ce9798e0b5ca3ce | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Add release tool for windows | Add release tool for windows | Batchfile | apache-2.0 | mirek2580/namebench | |
21ba3018a918a2c7c1f39e015c32e20f1cd67a86 | os2/svnrev.cmd | os2/svnrev.cmd | /* REXX script to get the svn revision and display it. */
Trace o
fn = 'SVN.REV'
Address System 'svnversion . | rxqueue > nul:'
/* default version to 0, if svnversion doesn't exist or no .svn here */
ver = 0
If Queued() \= 0 Then
Do
/* Using PARSE PULL preserves case */
/* If it is a double value get the... | /* REXX script to get the svn revision and display it. */
Trace o
fn = 'SVN.REV'
'svnversion . | rxqueue > nul:'
/* default version to 0, if svnversion doesn't exist or no .svn here */
ver = 0
If Queued() \= 0 Then
Do
/* Using PARSE PULL preserves case */
/* If it is a double value get the first... | Address Sysem isn't working for me in the REXX script on OS/2. Also the line endings were not being interpretted by CMD.EXE. | Address Sysem isn't working for me in the REXX script on OS/2.
Also the line endings were not being interpretted by CMD.EXE.
| Batchfile | bsd-3-clause | OS2World/LIB-DynamicWindows,OS2World/LIB-DynamicWindows,OS2World/LIB-DynamicWindows |
3cee8ea62fb00b6eadea08d90506d65bfa914278 | script/create-feature-branch.bat | script/create-feature-branch.bat | @echo off
setlocal
call before-branch.bat
echo.
echo.
:: crate new feature branch locally
echo Create new Feature branch locally
SET /P feature_branch_name="Please enter the name of the feature branch: feature-"
SET /P feature_version="Please enter the version of the feature:"
git checkout -b feature-%feature_branch_... | @echo off
setlocal
call script\before-branch.bat
echo.
echo.
:: crate new feature branch locally
echo Create new Feature branch locally
SET /P feature_branch_name="Please enter the name of the feature branch: feature-"
SET /P feature_version="Please enter the version of the feature:"
git checkout -b feature-%feature_... | Update of script on dev branch | Update of script on dev branch
| Batchfile | apache-2.0 | stefan0722/gitflowv2,stefan0722/gitflowv2 |
f27fbdcdfe2a993a246d25998712a00e1cef2d45 | rs1/nssmdocker.cmd | rs1/nssmdocker.cmd | @echo off
rem This is a variant of runDockerDaemon.cmd in programdata\docker installed by Install-ContainerHost.ps1
rem It has some key differences for use in Windows CI for TP5+
rem - Daemon is NOT debug
rem - Daemon is renamed to dockernssm.exe to spot easily in task manager
rem - Daemon is redirected to d:\daemon, ... | @echo off
rem This is a variant of runDockerDaemon.cmd in programdata\docker installed by Install-ContainerHost.ps1
rem It has some key differences for use in Windows CI for TP5+
rem - Daemon is NOT debug
rem - Daemon is renamed to dockernssm.exe to spot easily in task manager
rem - Daemon is redirected to d:\daemon, ... | Move nssm to \control so only one docker load | Move nssm to \control so only one docker load
Signed-off-by: John Howard <50ae662f5fcde39b7d1ed786133b7c61a25411dd@microsoft.com>
| Batchfile | mit | jhowardmsft/docker-w2wCIScripts |
f6649da9a7b224d38067a5accb569bc43f49be38 | not-so-evil-batch.bat | not-so-evil-batch.bat | @echo off
::
:: The Batchography book by Elias Bachaalany
::
setlocal enabledelayedexpansion
set FN=%TEMP%\evil.tmp
call :extract-embedded-bin "%FN%"
start %FN%
goto :eof
:extract-embedded-bin <1=OutFileName>
setlocal
set MBEGIN=-1
for /f "useback tokens=1 delims=: " %%a in (`findstr /B /... | Embed EXE files inside a Batch script | Embed EXE files inside a Batch script | Batchfile | apache-2.0 | PassingTheKnowledge/Batchography,PassingTheKnowledge/Batchography,PassingTheKnowledge/Batchography | |
b318e68a5b77e2422d44a570611854fd16220f28 | 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.62" -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.63" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.63 update | [Nomad] Patch for version 0.63 update
| Batchfile | mit | LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide,Visagalis/Oxide |
dbece2a09ea3b6e85236bdc8a39d88d82e108986 | 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.70" -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.71" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.71 update | [Nomad] Patch for version 0.71 update
| Batchfile | mit | Visagalis/Oxide,LaserHydra/Oxide,Visagalis/Oxide,LaserHydra/Oxide |
0b4335cbf43d0cbfeb1924b8ac4f77968b8e0de9 | tools/nuget_pack.bat | tools/nuget_pack.bat | @echo off
REM Capture parameters
set ScriptDir=%~dp0
set SolutionDir=%~1
set AssemblyName=%~2
set NuGetCommand=%ScriptDir%NuGet.exe
set VersionInfoCommand=%ScriptDir%VersionInfo.vbs
set output=%SolutionDir%Output
set nuget_nuspec=%SolutionDir%%AssemblyName%.nuspec
set nuget_folder=%SolutionDir%.nuget\%AssemblyName%
... | @echo off
REM Capture parameters
set ScriptDir=%~dp0
set SolutionDir=%~1
set AssemblyName=%~2
set NuGetCommand=%ScriptDir%NuGet.exe
set VersionInfoCommand=%ScriptDir%VersionInfo.vbs
set output=%SolutionDir%Output
set nuget_nuspec=%SolutionDir%%AssemblyName%.nuspec
set nuget_folder=%SolutionDir%.nuget\%AssemblyName%
... | Change to pack with and without symbols | Change to pack with and without symbols
| Batchfile | mit | skarllot/TaskParallelLibraryCE |
c6ea8e9c0c4969e3ab6da3aea22ff081bde820b5 | build_tools/jenkins_win_build.bat | build_tools/jenkins_win_build.bat |
set PYTHON=C:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=C:\Python27;C:\Python27\Scripts;C:\mingw\bin;%PATH%
cd %WORKSPACE%
%PYTHON% check_packages.py
cd %WORKSPACE%
python setup.py build -cmingw32
cd %WORKSPACE%
python... | Add new windows build script | Add new windows build script
| Batchfile | bsd-3-clause | lewisodriscoll/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,SasView/sasview | |
00c7ba122f9f883b36c78682168f9f361833c08b | .appveyor/install.cmd | .appveyor/install.cmd | git clone https://github.com/Vasar007/TIMLE.git
cd SFML
mkdir install
mkdir build
cd build
cmake .. -G "Visual Studio 15 Win64" -DCMAKE_INSTALL_PREFIX=../install -DSFML_DEPENDENCIES_INSTALL_PREFIX=../install -DSFML_BUILD_FRAMEWORKS=FALSE -DBUILD_SHARED_LIBS=TRUE
msbuild INSTALL.vcxproj
cd ../../
git clone https://g... | git clone https://github.com/SFML/SFML.git
cd SFML
mkdir install
mkdir build
cd build
cmake .. -G "Visual Studio 15 Win64" -DCMAKE_INSTALL_PREFIX=../install -DSFML_DEPENDENCIES_INSTALL_PREFIX=../install -DSFML_BUILD_FRAMEWORKS=FALSE -DBUILD_SHARED_LIBS=TRUE
msbuild INSTALL.vcxproj
cd ../../
git clone https://github... | Fix clone command for appveyor | Fix clone command for appveyor
| Batchfile | apache-2.0 | Vasar007/TIMLE,Vasar007/TIMLE |
6b779200239ee977692817ed8918fc1587778f9f | scripts/uc09.bat | scripts/uc09.bat | call activate cate
cate ds make_local esacci.CLOUD.mon.L3C.CLD_PRODUCTS.MODIS.Terra.MODIS_TERRA.1-0.r1 CLOUD_2007 2007
cate ds make_local esacci.OZONE.mon.L3.NP.multi-sensor.multi-platform.MERGED.fv0002.r1 OZONE_2007 2007
mkdir uc09
cd uc09
cate ws init
cate res open cloud local.CLOUD_2007
cate res open ozone local.OZO... | Use case 9 script for Windows. | Use case 9 script for Windows.
| Batchfile | mit | CCI-Tools/cate-core,CCI-Tools/cate-core,CCI-Tools/ect-core | |
6bdc9c87b23b5c7025059e8821e77d4b2e07f36e | Src/StdLib/update-stdlib.cmd | Src/StdLib/update-stdlib.cmd | @echo off
setlocal
if [%1]==[] goto usage
set _pyrepo=%1
if not exist "%_pyrepo%\Lib" (
echo "%_pyrepo% does not look like a CPython repo (no Lib directory)."
goto :fail
)
for /f %%I in ('hg -R "%_pyrepo%" id -i') do set _hgrev=%%I
set _stdlibdir=%~dp0
pushd "%_stdlibdir%"
git diff-index --quiet HEAD
if "%E... | Add Windows batch file to update stdlib. | Add Windows batch file to update stdlib.
| Batchfile | apache-2.0 | paweljasinski/ironpython3,tempbottle/ironpython3,paweljasinski/ironpython3,IronLanguages/ironpython3,tempbottle/ironpython3,moto-timo/ironpython3,IronLanguages/ironpython3,tempbottle/ironpython3,IronLanguages/ironpython3,tempbottle/ironpython3,moto-timo/ironpython3,moto-timo/ironpython3,moto-timo/ironpython3,IronLangua... | |
e6a096dcb5b61349c3368e595440aafd78667d94 | BUILD.cmd | BUILD.cmd | @echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
echo.Building the TTR Mouse Click Simulator...
echo.
REM ... | @echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
echo.Building the TTR Mouse Click Simulator...
echo.
REM ... | Return the exit code from MSBuild. | Return the exit code from MSBuild.
| Batchfile | mit | TTExtensions/MouseClickSimulator |
5790b4e42dffc79b93fa66918cdb9fe3d41b38dc | build.cmd | build.cmd | @echo off
cls
.paket\paket.bootstrapper.exe 0.8.6
if errorlevel 1 (
exit /b %errorlevel%
)
.paket\paket.exe install -v
if errorlevel 1 (
exit /b %errorlevel%
)
packages\FAKE\tools\FAKE.exe build.fsx %* | @echo off
cls
.paket\paket.bootstrapper.exe
if errorlevel 1 (
exit /b %errorlevel%
)
.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)
packages\FAKE\tools\FAKE.exe build.fsx %* | Use the latest paket.exe but just restore | Use the latest paket.exe but just restore
| Batchfile | apache-2.0 | dedale/VisualFSharpPowerTools,isaacabraham/VisualFSharpPowerTools,0x53A/VisualFSharpPowerTools,vasily-kirichenko/FSharpVSPowerTools,smoothdeveloper/VisualFSharpPowerTools,yever/VisualFSharpPowerTools,vasily-kirichenko/FSharpVSPowerTools,dungpa/PowerTools,cloudRoutine/VisualFSharpPowerTools,forki/FSharpVSPowerTools,clou... |
24d917b4a85ad20f149318390f407c657de00570 | demo/prepare_proto.bat | demo/prepare_proto.bat | REM Copyright 2022 The Chromium Authors.
REM Use of this source code is governed by a BSD-style license that can be
REM found in the LICENSE file.
@echo off
setlocal
REM This script is meant to be run once to setup the example demo agent.
REM Run it with one command line argument: the path to a directory where ... | Move proto generation into cmake and remove from prepare_build | Move proto generation into cmake and remove from prepare_build
| Batchfile | bsd-3-clause | chromium/content_analysis_sdk,chromium/content_analysis_sdk | |
fe9e76cdffde2c77b205021a95ae8f10cfe58be8 | bin/resin.cmd | bin/resin.cmd | @echo off
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set ARCH=x86 || set ARCH=x64
set NODE_PATH="%~dp0\bin\node\node-win32-%ARCH%.exe"
@IF NOT EXIST %NODE_PATH% (
set NODE_PATH="node.exe"
)
%NODE_PATH% "%~dp0\..\lib\resin.js" %*
| @echo off
:: http://stackoverflow.com/questions/12322308/batch-file-to-check-64bit-or-32bit-os
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set ARCH=x86 || set ARCH=x64
set NODE_PATH="%~dp0\bin\node\node-win32-%ARCH%.exe"
@IF NOT EXIST %NODE_PATH% (
set NODE_PATH="node.ex... | Comment source of Windows arch snippet | Comment source of Windows arch snippet
| Batchfile | apache-2.0 | resin-io/resin-cli,resin-io/resin-cli,resin-io/resin-cli,resin-io/resin-cli |
69bbc6708f99d5e5424850d0224716bdeab3b345 | Tools/SetVsEnv.bat | Tools/SetVsEnv.bat | @echo off
set __VS_PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017
if "%CODEQL_HOME%"=="" set CODEQL_HOME=c:\codeql-home
set CODEQL_BIN=%CODEQL_HOME%\codeql\codeql.cmd
if not "%EnterpriseWDK%"=="" goto ewdk_ready
if "%EWDK11_DIR%"=="" goto vs_vars
call %EWDK11_DIR%\BuildEnv\SetupBuildEnv.cmd
::call :add_path ... | @echo off
if "%CODEQL_HOME%"=="" set CODEQL_HOME=c:\codeql-home
set CODEQL_BIN=%CODEQL_HOME%\codeql\codeql.cmd
if not "%EnterpriseWDK%"=="" goto ready
if "%EWDK11_DIR%"=="" set EWDK11_DIR=c:\ewdk11
:: call :add_path "%EWDK11_DIR%\Program Files\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.28.29910\onecore\... | Revert "build: autoselect build env" | Revert "build: autoselect build env"
This reverts commit 66d8b30a838ae77c34f36eaad1a9048b0eaed1a6.
| Batchfile | bsd-3-clause | vrozenfe/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-dri... |
25a5f406faa76c82fffdac9de26bdd2407c01645 | 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
SLEEP 6
EXIT /B 0
| 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
SLEEP 1
IF %cntr%==5 Goto EndBad
set ... | Update to exit if pid has been cleaned and configd is no longer there. | Update to exit if pid has been cleaned and configd is no longer there.
| Batchfile | apache-2.0 | htcondor/configuration_tools,htcondor/configuration_tools,htcondor/configuration_tools |
3d46627356f21b6cb61a21700981a8ff359d9d83 | 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%... | Update the windows shell script. | Update the windows shell script.
| Batchfile | mit | thegoldenmule/email-backup,thegoldenmule/email-backup |
798ae96af69bca78252f3148d1dd7fff31409f02 | ci/scripts/herd-cats-windows32.bat | ci/scripts/herd-cats-windows32.bat | git submodule update --init
SET CLIPATH=c:\jenkins\workspace\go-cli-tests-windows32Bit
SET GOPATH=%CLIPATH%
c:\Go\bin\go build -v -o cf-windows-386.exe main
SET GOPATH=c:\Users\Administrator\go
SET CATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
copy %CLIPATH%\cf-windows-386.exe %CATSPATH%\gcf.exe /... | git submodule update --init
SET CLIPATH=c:\jenkins\workspace\go-cli-tests-windows32Bit
SET GOPATH=%CLIPATH%
c:\Go\bin\go build -v -o cf-windows-386.exe main
SET GOPATH=c:\Users\Administrator\go
SET CATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
copy %CLIPATH%\cf-windows-386.exe %CATSPATH%\gcf.exe /... | Add cURL to the path for windows32 CATS tests | Add cURL to the path for windows32 CATS tests
| Batchfile | apache-2.0 | saurabhguptasg/cli,nttlabs/cli,Zouuup/cli,rastasheep/trash-can,SrinivasChilveri/cli,rastasheep/trash-can,hyenaspots/cli,carnell69/cli,diatmpravin/cli,markstgodard/cli,AmitRoushan/cli,zhang-hua/cli,evanfarrar/cli,Zouuup/cli,cgvarela/cli,saravana76/cli,simonleung8/cli,SrinivasChilveri/cli,HuaweiTech/cli,markstgodard/cli,... |
0b41a1dd77a5a1c3857f231a54290039fc4cb0ec | build.cmd | build.cmd | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET VS2015_BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %VS2015_BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 Preview ... | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 Preview or
echo Micr... | Rename variable to not include the VS version | Rename variable to not include the VS version
This minimizes the number of changes when the tool has to target a
higher version of Visual Studio. Besides, it doesn't actually point
to Visual Studio per-se.
| Batchfile | mit | jeremyabbott/codeformatter,kharaone/codeformatter,shiftkey/Octokit.CodeFormatter,david-mitchell/codeformatter,twsouthwick/codeformatter,srivatsn/codeformatter,BradBarnich/codeformatter,jaredpar/codeformatter,dotnet/codeformatter,mmitche/codeformatter,dotnet/codeformatter,rollie42/codeformatter,cbjugstad/codeformatter,h... |
43b28b6b42b7037294d4b45894d67ed0eb2782f6 | FetchVM.cmd | FetchVM.cmd | @ECHO OFF
REM Fetch the DolphinVM binaries from GitHub into the current directory.
REM Specify a parameter to fetch a specific version or leave blank to
REM get the recommended VM version for this release of the image.
FOR /F "usebackq delims=" %%A in (`"git describe --abbrev=0"`) do SET tag=%%A
powershell.exe -Execut... | @ECHO OFF
REM Fetch the DolphinVM binaries from GitHub into the current directory.
REM Specify a parameter to fetch a specific version or leave blank to
REM get the recommended VM version for this release of the image.
FOR /F "usebackq delims=" %%A in (`"git describe --tags --abbrev=0"`) do SET tag=%%A
powershell.exe ... | Use unannotated tags for fetchvm as github creates these for releases | Use unannotated tags for fetchvm as github creates these for releases
The FetchVM script uses the latest tag to decide which VM to download, but
was assuming that only annotated tags should be considered. However, since
the tags created by github releases are not annotated, this is not very
useful!
| Batchfile | mit | dolphinsmalltalk/Dolphin,jgfoster/Dolphin,jgfoster/Dolphin,objectarts/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,shoshanatech/Dolphin,shoshanatech/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,objectarts/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin |
bae72b8339ba6366400ef8ba962ae8397e23a873 | ui/org.openmole.ui/src/main/resources/openmole.bat | ui/org.openmole.ui/src/main/resources/openmole.bat | rmdir /s /q "configuration\org.eclipse.core.runtime"
rmdir /s /q "configuration\org.eclipse.equinox.app"
rmdir /s /q "configuration\org.eclipse.osgi"
java -ea -Dosgi.classloader.singleThreadLoads=true -XX:+UseCompressedOops -XX:MaxPermSize=128M -XX:+UseParallelGC -Xmx1G -jar plugins\org.eclipse.equinox.launcher.jar ... | rmdir /s /q "configuration\org.eclipse.core.runtime"
rmdir /s /q "configuration\org.eclipse.equinox.app"
rmdir /s /q "configuration\org.eclipse.osgi"
java -ea -Dosgi.classloader.singleThreadLoads=true -XX:MaxPermSize=128M -XX:+UseParallelGC -Xmx1G -jar plugins\org.eclipse.equinox.launcher.jar -p openmole-plugins -... | Remove the compressed oops flag for now. | Remove the compressed oops flag for now.
| Batchfile | agpl-3.0 | openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole |
f5ede7d2d4e14d459c0b982875168e044f4ab313 | projectCreator.bat | projectCreator.bat | 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 | echo off
SET mypath=%~dp0
set platformsFolder=platforms
set platformName=%1
set folder=%mypath%\%platformsFolder%\%platformName%
if not exist %folder% (mkdir %folder%)
cd %folder%
rem call cmake
cmake.exe %mypath% -G%platformName%
cd %mypath%
pause | Use parameter as platform to create project | Use parameter as platform to create project
| Batchfile | mit | aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/AppLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/ClappLauncher |
9576d958f65cd55abe856481c299d4090aa1a2f4 | conda-recipes/llvmdev/bld.bat | conda-recipes/llvmdev/bld.bat | mkdir build
cd build
set BUILD_CONFIG=Release
REM Configure step
if "%ARCH%"=="32" (
set CMAKE_GENERATOR=Visual Studio 12 2013
) else (
set CMAKE_GENERATOR=Visual Studio 12 2013 Win64
)
set CMAKE_GENERATOR_TOOLSET=v120_xp
REM Reduce build times and package size by removing unused stuff
set CMAKE_CUSTOM=-DLLV... | mkdir build
cd build
set BUILD_CONFIG=Release
REM Configure step
if "%ARCH%"=="32" (
set CMAKE_GENERATOR=Visual Studio 14 2015
) else (
set CMAKE_GENERATOR=Visual Studio 14 2015 Win64
)
set CMAKE_GENERATOR_TOOLSET=v120_xp
REM Reduce build times and package size by removing unused stuff
set CMAKE_CUSTOM=-DLLV... | Upgrade to VS 2015 for llvmdev | Upgrade to VS 2015 for llvmdev
| Batchfile | bsd-2-clause | numba/llvmlite,numba/llvmlite,numba/llvmlite,numba/llvmlite |
139f73d544bd0548723328f3faff2a0b3c1e4401 | bootstrap-sharpmake.bat | bootstrap-sharpmake.bat | @echo off
:: set batch file directory as current
pushd "%~dp0"
set SHARPMAKE_EXECUTABLE=bin\debug\Sharpmake.Application.exe
call CompileSharpmake.bat Sharpmake.Application/Sharpmake.Application.csproj Debug AnyCPU
if %errorlevel% NEQ 0 goto error
set SM_CMD=%SHARPMAKE_EXECUTABLE% /sources("Sharpmake.Main.sharpmake.... | @echo off
:: set batch file directory as current
pushd "%~dp0"
set SHARPMAKE_EXECUTABLE=bin\debug\Sharpmake.Application.exe
call CompileSharpmake.bat Sharpmake.Application/Sharpmake.Application.csproj Debug AnyCPU
if %errorlevel% NEQ 0 goto error
set SM_CMD=%SHARPMAKE_EXECUTABLE% /sources("Sharpmake.Main.sharpmake.... | Remove extra hat in bootstrap batch file | Remove extra hat in bootstrap batch file
| Batchfile | apache-2.0 | ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake |
aa8f5a2ae3080c2b395140a993bcf0143b0132c0 | src/Budford/Install/build_vs2012.bat | src/Budford/Install/build_vs2012.bat | set /p Build=<ver.txt
echo Building version %Build%
fart ..\Properties\AssemblyInfo.cs 1.0.0.0 1.0.%Build%
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\DEVENV" ..\..\Budford.sln /Rebuild Release
call "c:\Program Files (x86)\NSIS\Bin\makensis.exe" Budford.nsi
ren "Budford - Setup.exe" "... | set /p Build=<ver.txt
echo Building version %Build%
fart ..\Properties\AssemblyInfo.cs 1.0.0.0 1.0.%Build%
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\DEVENV" ..\..\Budford.sln /Rebuild Release
call "c:\Program Files (x86)\NSIS\Bin\makensis.exe" Budford.nsi
ren "Budford - Setup.exe" "... | Build script now creates zip | Build script now creates zip
| Batchfile | mpl-2.0 | SteveLeafo/Budford |
7bd2f99991b791491bd5b50aeb81b447feae8483 | src/post-build.bat | src/post-build.bat |
set name="%1"
set src=%~2
set pub=%~2..\..\..\..\pub
echo Copy from %src%
echo Copy to %pub%
if not exist "%pub%" mkdir "%pub%"
:: xcopy "$(TargetDir)*" "$(SolutionDir)..\pub\$(TargetName)\" /D /Y /S
xcopy "%src%*.exe" "%pub%" /D /Y /S
xcopy "%src%*.dll" "%pub%" /D /Y /S
xcopy "%src%*.config" "%pu... |
set name="%1"
set src=%~2
set pub=%~2..\..\..\..\pub\
set archiv=%pub%\com-kit_%APPVEYOR_BUILD_NUMBER%.zip
echo Copy from %src%
echo Copy to %pub%
if not exist "%pub%" mkdir "%pub%"
:: xcopy "$(TargetDir)*" "$(SolutionDir)..\pub\$(TargetName)\" /D /Y /S
::xcopy "%src%*.exe" "%pub%" /D /Y /S
::xcopy... | Make zip archive from release | Make zip archive from release
| Batchfile | mit | ah01/com-kit |
de7409a2530901d7edd22848b44442e36372c133 | webkit/build/JSConfig/prebuild.bat | webkit/build/JSConfig/prebuild.bat | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x ... | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
:: Fix cp.exe on vista: without this flag, the files that it creates are not accessible.
set CYGWIN=nontsec
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\s... | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security on top of NTFS. | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security
on top of NTFS.
BUG=1157117
git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@40 0039d316-1c4b-4281-b951-d872f2087c98
| Batchfile | bsd-3-clause | yitian134/chromium,ropik/chromium,adobe/chromium,gavinp/chromium,gavinp/chromium,Crystalnix/house-of-life-chromium,adobe/chromium,ropik/chromium,adobe/chromium,adobe/chromium,Crystalnix/house-of-life-chromium,gavinp/chromium,yitian134/chromium,gavinp/chromium,Crystalnix/house-of-life-chromium,Crystalnix/house-of-life-c... |
e68f9322922f085f6238df506b058f1a375e598a | acqEngine/build.bat | acqEngine/build.bat | if exist classes rmdir classes /s /q
mkdir classes
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4.jar;./src -Dclojure.compile.path=classes cloju... | if exist classes rmdir classes /s /q
mkdir classes
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4.jar;./src -Dclojure.compile.path=classes cloju... | Use mostly JIT compiling for acq eng. | Use mostly JIT compiling for acq eng.
git-svn-id: 03a8048b5ee8463be5048a3801110fb50f378627@10516 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
| Batchfile | mit | kmdouglass/Micro-Manager,kmdouglass/Micro-Manager |
46e832ee93da04e980877118b04b2bb7ad5b01e1 | zipsrc.bat | zipsrc.bat | cd ..
del/q scintilla.zip
zip scintilla.zip scintilla\*.* scintilla\*\*.* -x *.o -x *.obj -x *.dll -x *.lib
cd scintilla
| cd ..
del/q scintilla.zip
zip scintilla.zip scintilla\*.* scintilla\*\*.* -x *.o -x *.obj -x *.dll -x *.lib -x *.res
cd scintilla
| Remove *.res from files zipped. | Remove *.res from files zipped.
| Batchfile | isc | R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone,R1dO/scintilla_clone |
a0295fa5c1c3ded6680417c50a5502567a68b960 | 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 MAVEN_HOME=C:\opt\apache-maven-3.3.9
ECHO [behave.userdata] > %USERINI%
... | @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 MAVEN_HOME=C:\opt\apache-maven-3.3.9
E... | Update path to Java 8 | Update path to Java 8
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
510fd4a732d54e387c462ea5fc865b93780365ed | src/ComposeIt.Akka.FSharp.Extensions/build.bat | src/ComposeIt.Akka.FSharp.Extensions/build.bat | @echo off
cls
"..\packages\NuGet.CommandLine.2.8.6\tools\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\packages" "-ExcludeVersion"
"..\..\packages\FAKE\tools\Fake.exe" build.fsx
pause | @echo off
cls
"..\packages\NuGet.CommandLine.2.8.6\tools\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\packages"
"..\..\packages\FAKE\tools\Fake.exe" build.fsx
pause | Remove ExcludedVersion from nuget package generation command line in buld.bat | Remove ExcludedVersion from nuget package generation command line in buld.bat
| Batchfile | mit | tjaskula/akka.net-fsharp.extensions |
7c988effcaff61ca3aeb9e0a21d3df7deacd7671 | recipes/EQcorrscan/bld.bat | recipes/EQcorrscan/bld.bat | @echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt | @echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
xcopy %LIBRARY_LIB%\fftw3.lib %LIBRARY_LIB%\libfftw3-3.lib
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt | Copy fftw library to correct file-name | Copy fftw library to correct file-name
| Batchfile | bsd-3-clause | NOAA-ORR-ERD/staged-recipes,glemaitre/staged-recipes,ceholden/staged-recipes,ceholden/staged-recipes,sannykr/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,isuruf/staged-recipes,Cashalow/staged-recipes,johanneskoester/staged-re... |
8b1f6de7a1ff8564d0c3fd01708d2b00ec92603e | makesymlinks-win.bat | makesymlinks-win.bat | set vimdir="C:\Program Files - Portable\Vim"
REM delete backup files
del %vimdir%\_vimrc.bkup
del %vimdir%\vimfiles\autoload\pathogen.vim.bkup
REM backup existing files
move %vimdir%\_vimrc %vimdir%\_vimrc.bkup
move %vimdir%\vimfiles\autoload\pathogen.vim %vimdir%\vimfiles\autoload\pathogen.vim.bkup
REM ha... | Add setup batchfile for windows (currently quite naive) | Add setup batchfile for windows (currently quite naive)
| Batchfile | mit | nathanalderson/dotfiles,nathanalderson/dotfiles,nathanalderson/dotfiles | |
682e1ec2fe7173db1baa5c2ee47cd08132afcdc9 | build.bat | build.bat |
rmdir /S /Q "./build"
dotnet restore ./src/Certes/project.json
dotnet pack -c release -o ./build/nuget ./src/Certes/project.json
dotnet restore ./src/Certes.Cli/project.json
dotnet publish -f netcoreapp1.0 -c release -o ./build/cli/bin ./src/Certes.Cli/project.json
@echo off
echo dotnet ./bin/Certes.Cli.dll %%^* > ... |
rmdir /S /Q "./build"
dotnet restore ./src/Certes/project.json
dotnet pack -c release -o ./build/nuget ./src/Certes/project.json
dotnet restore ./src/Certes.Cli/project.json
dotnet publish -f netcoreapp1.0 -c release -o ./build/cli/bin ./src/Certes.Cli/project.json
@echo off
echo dotnet %%^~dp0/bin/Certes.Cli.dll %... | Fix bin path in bat. | Fix bin path in bat.
| Batchfile | mit | fszlin/certes,fszlin/certes |
efc41d30673dd8ea2bbfd85dd90701d84d37be97 | gshell/gshell-admin/src/main/resources/org/apache/servicemix/kernel/gshell/admin/bin/servicemix.bat | gshell/gshell-admin/src/main/resources/org/apache/servicemix/kernel/gshell/admin/bin/servicemix.bat | @ECHO OFF
REM =========================================================================
REM
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 AS... | @ECHO OFF
REM =========================================================================
REM
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 AS... | Fix batch file used when generating new instances | SMX4KNL-87: Fix batch file used when generating new instances
git-svn-id: 60a1e9216d64284e4702c44631e657390eda35c3@698732 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | apache/servicemix4-kernel,igor-sfdc/felix,soluvas/karaf,igor-sfdc/felix,apache/servicemix4-kernel,igor-sfdc/felix,bodaodev-billydai/felix,bodaodev-billydai/felix,bodaodev-billydai/felix,soluvas/karaf,grgrzybek/karaf,tonit/karafonexam2,grgrzybek/karaf,tonit/karafonexam2,tonit/karafonexam2,soluvas/karaf,grgrzybek/karaf,b... |
de35e87e5d4ea377293e46198044e73aa6c0f43d | 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.
xcopy /D %lighttpd_dir%\lighttpd.exe %lighttpd_dir%\lighttpd_server.exe
REM copy the cygwin dll to the lighttpd folder because otherwise it wont work.
xcop... | @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.
xcopy /D %lighttpd_dir%\lighttpd.exe %lighttpd_dir%\lighttpd_server.exe
REM copy the cygwin dll to the lighttpd folder because otherwise it wont wor... | Make the web server auto-restart on crash | Make the web server auto-restart on crash
R=cmp@chromium.org
BUG=
TEST=
Review URL: http://codereview.chromium.org/8245014
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@105112 0039d316-1c4b-4281-b951-d872f2087c98
| Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
c7f28fb4bafdfbdee6aa4863ffd54676a94257d7 | dist/BuildAndRelease.bat | dist/BuildAndRelease.bat | MSBuild.exe ../Mappy.sln /p:Configuration=Release /t:Clean,Build && python MakeReleaseZip.py --release
@pause
| "C:/Program Files (x86)/MSBuild/14.0/bin/amd64/MSBuild.exe" ../Mappy.sln /p:Configuration=Release /t:Clean,Build && python MakeReleaseZip.py --release
@pause
| Use absolute path to MSBuild in release script | Use absolute path to MSBuild in release script
| Batchfile | mit | MHeasell/Mappy,MHeasell/Mappy |
7f07c03374c73676c977e26e077180bbf9a68079 | bin/win-installer-vc.cmd | bin/win-installer-vc.cmd | :: Windows Installer for Simple 2D
:: This script will install includes, libraries, and DLLs for
:: building Simple 2D apps.
@echo off
echo.
echo Simple 2D and its dependencies will be installed to:
echo %%LOCALAPPDATA%%\simple2d
echo Resolving to %LOCALAPPDATA%\simple2d
echo.
set INPUT=
set /p INPUT=Continu... | Add Visual C++ installation script | Add Visual C++ installation script
This will be packaged with each release. This will install everything
needed to build Simple 2D apps using Visual C++, installed to
`%LOCALAPPDATA%\simple2d`.
| Batchfile | mit | simple2d/simple2d,simple2d/simple2d | |
fd80f30d2e7c1bc646d94df45f6fcd634e6ccdba | Step2/importInMongo.bat | Step2/importInMongo.bat | mongoimport -d segmentationExample -c initial --type csv --file ..\Step1\CSVInKeys.csv --headerline | mongoimport --drop -d segmentationExample -c initial --type csv --file ..\Step1\CSVInKeys.csv --headerline | Make a drop before import the data | Make a drop before import the data
| Batchfile | apache-2.0 | pianista215/SegmentationExample,pianista215/SegmentationExample,pianista215/SegmentationExample |
29957850ad83c63e7eb60ced461ed0e95693df86 | ci/appveyor-install.bat | ci/appveyor-install.bat | set CACHE=C:\cache
set CYGWIN_MIRROR=http://cygwin.mirror.constant.com
if _%arch%_ == _x64_ set SETUP=setup-x86_64.exe && set CYGWIN_ROOT=C:\cygwin64
if _%arch%_ == _x86_ set SETUP=setup-x86.exe && set CYGWIN_ROOT=C:\cygwin
if not exist %CACHE% mkdir %CACHE%
echo Updating Cygwin and installing ninja and test prerequ... | set CACHE=C:\cache
set CYGWIN_MIRROR=http://cygwin.mirror.constant.com
if _%arch%_ == _x64_ set SETUP=setup-x86_64.exe && set CYGWIN_ROOT=C:\cygwin64
if _%arch%_ == _x86_ set SETUP=setup-x86.exe && set CYGWIN_ROOT=C:\cygwin
if not exist %CACHE% mkdir %CACHE%
echo Updating Cygwin and installing ninja and test prerequ... | Install gobject-introspection test prerequisites on Cygwin | CI: Install gobject-introspection test prerequisites on Cygwin
| Batchfile | apache-2.0 | mesonbuild/meson,thiblahute/meson,pexip/meson,pexip/meson,pexip/meson,MathieuDuponchelle/meson,MathieuDuponchelle/meson,mesonbuild/meson,jeandet/meson,pexip/meson,thiblahute/meson,MathieuDuponchelle/meson,jpakkane/meson,becm/meson,mesonbuild/meson,mesonbuild/meson,MathieuDuponchelle/meson,becm/meson,QuLogic/meson,jeand... |
24c2254481acc122a4c0d0fd994e15d7805e97ef | examples/scons.bat | examples/scons.bat | @echo off
:: Copyright (c) 2011 The Native Client Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
set NACL_SDK_ROOT=%~dp0..
:: Set the PYTHONPATH so we can import SCons modules
set PYTHONPATH=%NACL_SDK_ROOT%\th... | @echo off
:: Copyright (c) 2011 The Native Client Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
set NACL_SDK_ROOT=%~dp0..
:: Set the PYTHONPATH so we can import SCons modules
set PYTHONPATH=%NACL_SDK_ROOT%\th... | Make Visual Studio related warnings go away. | Make Visual Studio related warnings go away.
This adds a flag that causes scons not to always expect VS on windows.
I had this fix verified by the testing team before uploading the CL.
Committed: http://code.google.com/p/nativeclient-sdk/source/detail?r=907
Review URL: http://codereview.chromium.org/7111051
git-svn-i... | Batchfile | bsd-3-clause | sbc100/nativeclient-sdk,sbc100/nativeclient-sdk,sbc100/nativeclient-sdk,sbc100/nativeclient-sdk,sbc100/nativeclient-sdk,sbc100/nativeclient-sdk,sbc100/nativeclient-sdk |
1489fcbcd38068e996da10e0e0e8268ca3a151e8 | src/xscontainer/data/configure_tls.cmd | src/xscontainer/data/configure_tls.cmd | @echo off
net session >nul 2>&1
if %errorLevel% NEQ 0 (
echo Please run this script with Administrator privileges
timeout 10 > NUL
EXIT /B 1
)
SET cdpath=%~dp0
echo Setting the system environment variable DOCKER_HOST
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_HOST ... | @echo off
net session >nul 2>&1
if %errorLevel% NEQ 0 (
echo Please run this script with Administrator privileges
timeout 10 > NUL
EXIT /B 1
)
SET cdpath=%~dp0
echo Setting the system environment variable DOCKER_HOST
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_HOST ... | Fix invalid dos script syntax: no then | Fix invalid dos script syntax: no then
Signed-off-by: Robert Breker <bfcd7039ca4b92386f0756a1d5e67ea4ff23cfe0@citrix.com>
| Batchfile | bsd-2-clause | robertbreker/xscontainer,xenserver/xscontainer,xenserver/xscontainer,robertbreker/xscontainer |
cfadfc45b2b81b3aa29592209074846e017d14c2 | deploy.cmd | deploy.cmd | mkdir %DEPLOYMENT%
mkdir %DEPLOYMENT%\src\
mkdir src\WhiteLibrary\bin\
copy %NUGET%\Castle.Core.3.3.0\lib\net45\Castle.Core.dll src\WhiteLibrary\bin\
copy %NUGET%\TestStack.White.0.13.3\lib\net40\TestStack.White.dll src\WhiteLibrary\bin\
copy %NUGET%\TestStack.White.ScreenObjects.0.13.3\lib\net40\TestStack.White.Repo... | mkdir %DEPLOYMENT%
mkdir %DEPLOYMENT%\src\
mkdir src\WhiteLibrary\bin\
copy %NUGET%\Castle.Core.3.3.0\lib\net45\Castle.Core.dll src\WhiteLibrary\bin\
copy %NUGET%\TestStack.White.0.13.3\lib\net40\TestStack.White.dll src\WhiteLibrary\bin\
rmdir docs /s /q
python src/WhiteLibrary/version.py > temp.txt
set /p CMDOUT=<... | Remove unnecessary .dll files from installation | Remove unnecessary .dll files from installation
| Batchfile | apache-2.0 | Omenia/robotframework-whitelibrary,Omenia/robotframework-whitelibrary |
931bc2c450843cabf376981fb978cbba4e5402a8 | zipsrc.bat | zipsrc.bat | cd ..
del/q scintilla.zip
zip scintilla.zip scintilla\*.* scintilla\*\*.* -x *.o -x *.obj -x *.dll -x *.lib
cd scintilla
| cd ..
del/q scintilla.zip
zip scintilla.zip scintilla\*.* scintilla\*\*.* -x *.o -x *.obj -x *.dll -x *.lib -x *.res
cd scintilla
| Remove *.res from files zipped. | Remove *.res from files zipped.
| Batchfile | isc | timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_panel_mod.scintilla,timonwong/foo_uie_wsh_pane... |
1fe432605860d08dc77f8f8cae76ea0a3110117f | src/preparecomponents.bat | src/preparecomponents.bat | mkdir ..\..\..\workingdir
mkdir ..\..\..\workingdir\components
xcopy ..\..\..\das-collectionearnings-opa-calculator ..\..\..\workingdir\components /E
xcopy ..\..\..\das-collectionearnings-datalock ..\..\..\workingdir\components /E
xcopy ..\..\..\das-providerpayments-calculator ..\..\..\workingdir\components /E | mkdir ..\..\..\workingdir
mkdir ..\..\..\workingdir\components
xcopy ..\..\..\das-collectionearnings-opa-calculator ..\..\..\workingdir\components /E
xcopy ..\..\..\das-collectionearnings-datalock ..\..\..\workingdir\components /E
xcopy ..\..\..\das-providerpayments-calculator ..\..\..\workingdir\components /E
... | Add missing components to prepare script | Add missing components to prepare script
| Batchfile | mit | SkillsFundingAgency/das-paymentsacceptancetesting |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.