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 |
|---|---|---|---|---|---|---|---|---|---|
8a20ca75a1dc093e6032833bf6cc9231213dc7c9 | spf13-vim-windows-install.cmd | spf13-vim-windows-install.cmd | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
call git clone --recursive -b 3.0 git://github.com/spf13/spf13-vim.git %BASE_DIR%
call mkdir %BASE_DIR%\.vim\bundle
call mklink /J %HOME%\.vim %BASE_DIR%\.vim
call mklink %HOME... | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
call git clone --recursive -b 3.0 git://github.com/spf13/spf13-vim.git %BASE_DIR%
call mkdir %BASE_DIR%\.vim\bundle
call mklink /J %HOME%\.vim %BASE_DIR%\.vim
call mklink %HOME%\.vimr... | Add missing mklink to .vimrc.bundles in windows installer script. | Add missing mklink to .vimrc.bundles in windows installer script.
| Batchfile | apache-2.0 | chrxn/spf13-vim,hahaliu005/spf13-vim,wenzhucjy/spf13-vim,dawnsong/spf13-vim,Anden/spf13-vim,Frank1993/spf13-vim,perfectworks/pw-vim,0xItx/spf13-vim,kevinushey/spf13-vim,nxsy/spf13-vim,fuhongxue/spf13-vim,NoviaDroid/spf13-vim,xuzhenglun/spf13-vim,Xiaolang0/spf13-vim,mightyguava/spf13-vim,millerdw06/spf13-vim,chenshuiyin... |
6adf9cf6874bad41a4c6de1c7b04b1284f74df30 | src/resources/startup.bat | src/resources/startup.bat | java -Dappdir=.. -cp ../lib/windows/jmf.jar;../lib/startup.jar;../lib/windows/jdic.jar;../resources;../lib/windows; org.jivesoftware.launcher.Startup | :run
if "%1" == "-debug" goto debug
java -Dappdir=.. -cp ../lib/windows/jmf.jar;../lib/startup.jar;../lib/windows/jdic.jar;../resources;../lib/windows; org.jivesoftware.launcher.Startup
goto end
:debug
start "Spark" "%JAVA_HOME%\bin\java" -Xdebug -Xint -server -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n... | Allow for remote debugging in spark. | Allow for remote debugging in spark.
git-svn-id: f13e20fb8540f76a08799c0051229138c0279aa7@7601 b35dd754-fafc-0310-a699-88a17e54d16e
| Batchfile | apache-2.0 | joshuairl/toothchat-client,joshuairl/toothchat-client,joshuairl/toothchat-client,joshuairl/toothchat-client |
e0fc94739461e92e98c623b358167b2f788dbc5a | 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.76" -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.77" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.77 update | [Nomad] Patch for version 0.77 update
| Batchfile | mit | LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide,Visagalis/Oxide |
ea737aa7004e2eab4965b0eb6c46d3373635d061 | MyGet.bat | MyGet.bat | dotnet pack src/GladNet.Common/ -c Release
dotnet pack src/GladNet.Encryption/ -c Release
dotnet pack src/GladNet.Engine.Common/ -c Release
dotnet pack src/GladNet.Engine.Server/ -c Release
dotnet pack src/GladNet.Message/ -c Release
dotnet pack src/GladNet.Message.Handlers/ -c Release
dotnet pack src/GladNet.Payload/ ... | msbuild ./src/GladNet.Common/GladNet.Common.csproj /p:Configuration=Release
msbuild ./src/GladNet.Encryption/GladNet.Encryption.csproj /p:Configuration=Release
msbuild ./src/GladNet.Engine.Common/GladNet.Engine.Common.csproj /p:Configuration=Release
msbuild ./src/GladNet.Engine.Server/GladNet.Engine.Server.csproj /p:Co... | Revert "Try dotnet pack instead" | Revert "Try dotnet pack instead"
This reverts commit 594f39386b536908ff0fc9c1b3eac28dc8af7606.
Revert
| Batchfile | bsd-3-clause | HelloKitty/GladNet2.0,HelloKitty/GladNet2.0,HelloKitty/GladNet2,HelloKitty/GladNet2 |
29f374109953b1bb70a1a3270f533e2bce653551 | appveyor-install.cmd | appveyor-install.cmd | "%sdkverpath%" -q -version:"%sdkver%"
call setenv /x64
rem install python packages
pip install numpy
rem builds currently fail
rem pip install numexpr
rem pip install tables >= 3.1.1
pip install enum34>=1.0.4
pip install stevedore>=1.2.0
pip install click>=3.3
pip install pyyaml>=3.11
pip install sphinx>1.3
pip instal... | "%sdkverpath%" -q -version:"%sdkver%"
call setenv /x64
rem install python packages
pip install numpy
rem builds currently fail
rem pip install numexpr
rem pip install tables >= 3.1.1
pip install enum34>=1.0.4
pip install stevedore>=1.2.0
pip install click>=3.3
pip install pyyaml>=3.11
pip install sphinx>=1.3
pip insta... | Fix mistake in setting sphinx's required version number | Fix mistake in setting sphinx's required version number
| Batchfile | bsd-2-clause | simphony/simphony-common |
6019c427eb7df8984758ce6655ec06ddc2c84f98 | build.bat | build.bat | set plugin_file=%CD%/UnrealCV.uplugin
set package_folder=%CD%/Plugins/UnrealCV
set UE4=C:\Program Files\Epic Games\UE_4.14
REM TODO: Check the existence of UE4 folder and give a useful hint for user
REM Modify the UE4 variable to point to your UE4 installation path
"%UE4%/Engine/Build/BatchFiles/RunUAT.bat" BuildPlugin... | set plugin_file=%CD%/UnrealCV.uplugin
set package_folder=%CD%/Plugins/UnrealCV
set UE4=C:\Program Files\Epic Games\UE_4.14
REM TODO: Check the existence of UE4 folder and give a useful hint for user
REM Modify the UE4 variable to point to your UE4 installation path
"%UE4%/Engine/Build/BatchFiles/RunUAT.bat" BuildPlugin... | Copy compiled binaries to C:\qiuwch\workspace\unrealcv\unrealcv. | Copy compiled binaries to C:\qiuwch\workspace\unrealcv\unrealcv.
| Batchfile | mit | unrealcv/unrealcv,unrealcv/unrealcv,unrealcv/unrealcv,unrealcv/unrealcv,unrealcv/unrealcv |
6f3955815da6e73f1d92cbf78f3b639a7dc5e016 | S32-io/IO-Socket-INET.bat | S32-io/IO-Socket-INET.bat | @ECHO OFF
:: script for Windows to supply fork() to rakudo
:: based on IO-Socket-INET.sh
SET TEST=%1
SET PORT=%2
:: clear the status message flag but don't whinge about the file not being there
DEL t\spec\S32-io\server-ready-flag 2> NUL
:: Use START to fork the server and set the window title so we can kill ... | @ECHO OFF
:: script for Windows to supply fork() to rakudo
:: based on IO-Socket-INET.sh
SET TEST=%1
SET PORT=%2
:: clear the status message flag but don't whinge about the file not being there
DEL t\spec\S32-io\server-ready-flag 2> NUL
:: Use START to fork the server and set the window title so we can kill ... | Make socket tests run less annoyingly on Win32. | Make socket tests run less annoyingly on Win32.
They could pop up windows before; this prevents it.
| Batchfile | artistic-2.0 | b2gills/roast,b2gills/roast,niner/roast,perl6/roast,niner/roast,laben/roast,laben/roast,laben/roast,dogbert17/roast,bitrauser/roast,cygx/roast,skids/roast,dankogai/roast,dankogai/roast,dogbert17/roast,bitrauser/roast,cygx/roast,dankogai/roast,skids/roast,zostay/roast,skids/roast,niner/roast,zostay/roast,cygx/roast,b2gi... |
1ee53054d045130f9b1346e4118d3a8c0f216381 | builds/msvc/build/buildbase.bat | builds/msvc/build/buildbase.bat | @ECHO OFF
REM Usage: [buildbase.bat ..\vs2013\mysolution.sln 12]
SET solution=%1
SET version=%2
SET log=build_%version%.log
SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat
SET environment="%programfiles(x86)%\%tools%"
IF NOT EXIST %environment% SET environment="%programfiles%\%tools%"
IF NOT EXIST %envi... | @ECHO OFF
REM Usage: [buildbase.bat ..\vs2013\mysolution.sln 12]
SET solution=%1
SET version=%2
SET log=build_%version%.log
SET tools=Microsoft Visual Studio %version%.0\VC\vcvarsall.bat
SET environment="%programfiles(x86)%\%tools%"
IF NOT EXIST %environment% SET environment="%programfiles%\%tools%"
IF NOT EXIST %envi... | Change VS build script to x64 only. | Change VS build script to x64 only.
| Batchfile | agpl-3.0 | tuomassiren/libbitcoin-server,tuomassiren/libbitcoin-server,libmetrocoin/libmetrocoin-server,libmetrocoin/libmetrocoin-server,tuomassiren/libbitcoin-server,libmetrocoin/libmetrocoin-server,RojavaCrypto/libbitcoin-server,RojavaCrypto/libbitcoin-server,RojavaCrypto/libbitcoin-server |
f13a5935a4c550c551482bc2674041a6803e4207 | recipes/6s/bld.bat | recipes/6s/bld.bat | :: Configure.
cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%PREFIX% .
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| :: Configure.
cmake -D CMAKE_INSTALL_PREFIX=%PREFIX% .
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| Remove option to produce NMake make files - lets see what the default does | Remove option to produce NMake make files - lets see what the default does
| Batchfile | bsd-3-clause | mariusvniekerk/staged-recipes,mcs07/staged-recipes,jerowe/staged-recipes,sodre/staged-recipes,larray-project/staged-recipes,scopatz/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,isuruf/staged-recipes,guillochon/staged-recipes,stuertz/staged-recipes,Cashalow/staged-recipes,igortg/... |
3f799b4630730ed501507921c4f699c10bf8c092 | zephir.bat | zephir.bat | @echo off
REM This file is part of the Zephir.
REM
REM (c) Zephir Team <team@zephir-lang.com>
REM
REM For the full copyright and license information, please view the LICENSE
REM file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | @echo off
rem This file is part of the Zephir.
rem
rem (c) Zephir Team <team@zephir-lang.com>
rem
rem For the full copyright and license information, please view the LICENSE
rem file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | Correct code style for batch file | Correct code style for batch file
| Batchfile | mit | vpg/zephir,vpg/zephir,phalcon/zephir,zephir-lang/zephir,phalcon/zephir,vpg/zephir,vpg/zephir,zephir-lang/zephir,zephir-lang/zephir,phalcon/zephir,vpg/zephir,phalcon/zephir,zephir-lang/zephir,phalcon/zephir,vpg/zephir,phalcon/zephir,zephir-lang/zephir |
9df4be9793c7677339d7b686da3d37adbed84977 | make.bat | make.bat | vcvarsall.bat x86
CL /I C:\OpenSSL-Win32\include /INCREMENTAL bmpow.c /MT /link /DLL /OUT:bmpow32.dll /LIBPATH:"C:\OpenSSL-Win32\lib" libeay32.lib ws2_32.lib
| C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat x86
CL /I C:\OpenSSL-Win32\include /INCREMENTAL bmpow.c /MT /link /DLL /OUT:bmpow32.dll /LIBPATH:"C:\OpenSSL-Win32\lib" libeay32.lib ws2_32.lib
| Use full path to vcvarsall | Use full path to vcvarsall
| Batchfile | mit | bmng-dev/bitmessage-pow,bmng-dev/bitmessage-pow,bmng-dev/bitmessage-pow |
dbceda2af676c5c8995815969ccc1f220339c106 | build-and-run.bat | build-and-run.bat | @echo off
del /F TestApp.exe
call gradlew clean -POS=windows
call gradlew build -POS=windows
echo F | xcopy /Q /Y /F build\exe\testApp\TestApp.exe TestApp.exe
call TestApp.exe > output.log
rem call TestApp.exe --useJSONFormat > outputJSON.log
rem call TestApp.exe --nosha256 > outputnoSha.log | @echo off
del /F TestApp.exe
call gradlew clean -POS=windows
call gradlew build -POS=windows
echo F | xcopy /Q /Y /F build\exe\testApp\TestApp.exe TestApp.exe
rem call TestApp.exe > output.log
call TestApp.exe --noOpenCL > outputnoCL.log
rem call TestApp.exe --useJSONFormat > outputJSON.log
rem call TestApp.exe --nosh... | Add No OpenCL Run Configuration | Add No OpenCL Run Configuration
| Batchfile | mit | ZetaChain/ZetaChain_Native,ZetaChain/ZetaChain_Native |
7b8b89dff9e3805a75e43f72833e02f16773de38 | install/Prepare-Release.bat | install/Prepare-Release.bat | @echo off
setlocal enableextensions
mkdir ReformatUtils 2> NUL
copy /y ..\src\resharper-reformatutils\bin\Release\* ReformatUtils
| @echo off
setlocal enableextensions
mkdir ReformatUtils 2> NUL
copy /y ..\src\ReformatUtils\bin\Release\* ReformatUtils
| Fix helper script (update path) | Fix helper script (update path)
| Batchfile | mit | oysteinkrog/resharper-reformatutils,oysteinkrog/resharper-reformatutils |
d42ab2a0b027f1e9e88cef5b233a900acf885a6d | build-windows.cmd | build-windows.cmd | CALL .\.venv\Scripts\activate
pip install -r .\requirements.txt
pyinstaller .\rocketleagueminimapgenerator\main.py --onefile
MOVE /Y .\dist\main.exe .\dist\rocketleagueminimapgenerator.exe
COPY /Y .\README.md .\dist\README.txt
DEL /S /Q .\dist\assets
COPY /Y .\assets .\dist\assets
powershell Compress-Archive -Force -... | CALL .\.venv\Scripts\activate
pip install -r .\requirements.txt
set PYTHONOPTIMIZE=1 && pyinstaller .\rocketleagueminimapgenerator\main.py --onefile
MOVE /Y .\dist\main.exe .\dist\rocketleagueminimapgenerator.exe
COPY /Y .\README.md .\dist\README.txt
DEL /S /Q .\dist\assets
COPY /Y .\assets .\dist\assets
powershell C... | Optimize build output on windows. | Optimize build output on windows.
| Batchfile | agpl-3.0 | enzanki-ars/rocket-league-minimap-generator |
4a090aba11872f4a9a2d22938cf41d8cbce5e088 | recipes/jkqtplotter/bld.bat | recipes/jkqtplotter/bld.bat | :: Fix for https://github.com/jkriege2/JKQtPlotter/issues/35
set "CXXFLAGS= -MD"
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ..
if errorlevel 1 exit 1
cmake --build . --config Release --target install
if errorlevel 1 exit 1
| :: Fix for https://github.com/jkriege2/JKQtPlotter/issues/35
set "CXXFLAGS= -MD"
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% -DJKQtPlotter_BUILD_EXAMPLES=OFF -DJKQtPlotter_BUILD_STATIC_LIBS=OFF ..
if errorlevel 1 exit 1
cmake --build . --config Release --targ... | Disable examples and static libs | Disable examples and static libs
| Batchfile | bsd-3-clause | jakirkham/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,Juanlu001/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,mcs07/staged-recipes,petrushy/staged... |
08d62ca8504873209a4db898721b036ca5a5d45e | scripts/take_screenshot.bat | scripts/take_screenshot.bat |
start fgautopilot-0.0.3/fgautopilot.exe
curl -fsS -o nircmd.zip http://www.nirsoft.net/utils/nircmd.zip
7z x nircmd.zip
dir
nircmd.exe cmdwait 20000 savescreenshot "shot.png"
dir
taskkill /f /im "fgautopilot.exe"
|
start fgautopilot-0.0.3/fgautopilot.exe
curl -fsS -o nircmd.zip http://www.nirsoft.net/utils/nircmd.zip
7z x nircmd.zip
dir
nircmd.exe cmdwait 60000 savescreenshot "shot.png"
dir
taskkill /f /im "fgautopilot.exe"
| Increase waiting time before screenshot taking. | [appveyor] Increase waiting time before screenshot taking.
| Batchfile | apache-2.0 | approximator/FlightGear_Autopilot,approximator/FlightGear_Autopilot |
0d2dd3aabd314b4dfed653d15259a5104eba5419 | util/cron/test-cygwin32.bat | util/cron/test-cygwin32.bat | @ECHO OFF
REM Test default configuration against full suite on windows.
REM WORKSPACE is always set inside our testing environment. If this is run
REM outside that environment, the caller is responsible for setting it.
IF "%WORKSPACE%"=="" GOTO ErrExit
REM NOTE: This is pretty messy, but it is the only way I could fi... | @ECHO OFF
REM Test default configuration against full suite on windows.
REM WORKSPACE is always set inside our testing environment. If this is run
REM outside that environment, the caller is responsible for setting it.
IF "%WORKSPACE%"=="" GOTO ErrExit
REM NOTE: This is pretty messy, but it is the only way I could fi... | Add correct PATH for cygwin32 batch script. | Add correct PATH for cygwin32 batch script.
| Batchfile | apache-2.0 | CoryMcCartan/chapel,CoryMcCartan/chapel,CoryMcCartan/chapel,chizarlicious/chapel,chizarlicious/chapel,chizarlicious/chapel,CoryMcCartan/chapel,chizarlicious/chapel,hildeth/chapel,CoryMcCartan/chapel,chizarlicious/chapel,hildeth/chapel,hildeth/chapel,hildeth/chapel,hildeth/chapel,chizarlicious/chapel,hildeth/chapel,chiz... |
481299c748bb7d692cd9da4971a7879c17234e35 | scripts/windows/apktool.bat | scripts/windows/apktool.bat | @echo off
if "%PATH_BASE%" == "" set PATH_BASE=%PATH%
set PATH=%CD%;%PATH_BASE%;
java -jar -Duser.language=en "%~dp0\apktool.jar" %*
| @echo off
if "%PATH_BASE%" == "" set PATH_BASE=%PATH%
set PATH=%CD%;%PATH_BASE%;
chcp 65001 2>nul >nul
java -jar -Duser.language=en -Dfile.encoding=UTF8 "%~dp0\apktool.jar" %*
| Update Windows scripts for unicode support | Update Windows scripts for unicode support
- fixes #1595
| Batchfile | apache-2.0 | pwelyn/Apktool,iBotPeaches/Apktool,Benjamin-Dobell/Apktool,pwelyn/Apktool,Benjamin-Dobell/Apktool,iBotPeaches/Apktool |
8d7a6bc6d77eb0947e06f89d7021170204361277 | ci/cli/tasks/units-windows.bat | ci/cli/tasks/units-windows.bat | SET GOPATH=%CD%\gopath
SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH%
cd %GOPATH%\src\code.cloudfoundry.org\cli
powershell -command set-executionpolicy remotesigned
go get github.com/onsi/ginkgo/ginkgo
ginkgo -r -randomizeAllSpecs -randomizeSuites .
| SET GOPATH=%CD%\gopath
SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH%
cd %GOPATH%\src\code.cloudfoundry.org\cli
powershell -command set-executionpolicy remotesigned
go get github.com/onsi/ginkgo/ginkgo
ginkgo -r -randomizeAllSpecs -randomizeSuites -skipPackage integration .
| Revert "the integration package is not in the cli resource" | Revert "the integration package is not in the cli resource"
This reverts commit a2fdfaa92f857fb85ddc98b3eebc7ced1047821a.
| Batchfile | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
37b45442c5e509020c803561d40f8b34cd579a52 | 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 (
devenv ..\db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
)
@rem build Python
c... | @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 ... | Use vcbuild for VS 2009. | Use vcbuild for VS 2009.
| Batchfile | mit | sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator |
ede1111d5c3d21a59088855d3680713a1ab746ca | conda.recipe/bld.bat | conda.recipe/bld.bat | cd %RECIPE_DIR%
cd ..
:: Remove the build directory since incremental builds aren't currently supported.
rd /s /q build
python setup.py install || exit 1
rd /s /q %SP_DIR%\__pycache__
rd /s /q %SP_DIR%\numpy
rd /s /q %SP_DIR%\Cython
| cd %RECIPE_DIR%
cd ..
python setup.py install || exit 1
rd /s /q %SP_DIR%\__pycache__
rd /s /q %SP_DIR%\numpy
rd /s /q %SP_DIR%\Cython
| Remove code that deletes build directory every time in conda recipe. Incremental builds are supported now. | Remove code that deletes build directory every time in conda recipe.
Incremental builds are supported now.
| Batchfile | bsd-2-clause | insertinterestingnamehere/dynd-python,mwiebe/dynd-python,mwiebe/dynd-python,izaid/dynd-python,mwiebe/dynd-python,insertinterestingnamehere/dynd-python,ContinuumIO/dynd-python,ContinuumIO/dynd-python,mwiebe/dynd-python,izaid/dynd-python,ContinuumIO/dynd-python,insertinterestingnamehere/dynd-python,insertinterestingnameh... |
b5bfe951c4d80e1eec18d4f3a0716fde2a8515bf | NetKVM/CoInstaller/setbuildenv.bat | NetKVM/CoInstaller/setbuildenv.bat | ::set PSDK_INC_PATH=C:\PROGRA~1\MI2578~1\Windows\v6.0A\Include
::set PSDK_LIB_PATH=C:\PROGRA~1\MI2578~1\Windows\v6.0A\Lib
@echo off
set __sdk_path__="C:\Program Files\Microsoft SDKs\Windows\v6.0A"
call :setshortpath PSDK_INC_PATH %__sdk_path__%\Include
call :setshortpath PSDK_LIB_PATH %__sdk_path__%\Lib
goto :eof
:set... | @echo off
call :set_sdk_path
call :setshortpath PSDK_INC_PATH %__sdk_path__%\Include
call :setshortpath PSDK_LIB_PATH %__sdk_path__%\Lib
call :clean_sdk_path
goto :eof
:setshortpath
set %1=%~s2
goto :eof
:set_sdk_path
set __sdk_path__="C:\Program Files\Microsoft SDKs\Windows\v6.0A"
if NOT "%SDK_PATH%"=="" set __sdk_p... | Enable to set external SDK path | [NetKVM] Enable to set external SDK path
| Batchfile | bsd-3-clause | ladipro/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,ladipro/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,GoogleCloudPlatform/compute-windows-drivers,daynix/kvm-guest-drivers-windows,GoogleCloudPlatform/compute-windows-drivers,YanVugenfirer/kvm-guest-drivers-windows,YanVugenfirer/kvm-gue... |
bd0d8310ff051c0d00c138ce3f14e6a4f38212ba | recipes/ecell4_base/bld.bat | recipes/ecell4_base/bld.bat | "%PYTHON%" setup.py install
"%PYTHON%" setup.py test
if errorlevel 1 exit 1
| "%PYTHON%" setup.py install
"%PYTHON%" -m pip install -vv .
if errorlevel 1 exit 1
| Replace "setup.py test" to "-m pip install -vv ." | Replace "setup.py test" to "-m pip install -vv ." | Batchfile | bsd-3-clause | igortg/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,conda-forge/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,petrushy/staged-... |
21969c955f77719b7800b61ab3fa392e5bf19354 | 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 | simonleung8/cli,markstgodard/cli,simonleung8/cli,hyenaspots/cli,fujitsu-cf/cli,markstgodard/cli,markstgodard/cli,hyenaspots/cli,hyenaspots/cli,fujitsu-cf/cli,simonleung8/cli,hyenaspots/cli,markstgodard/cli,fujitsu-cf/cli |
34149243fe94f2270ef21beb286d559253031102 | gen_vs2013_proj_win64.bat | gen_vs2013_proj_win64.bat | @echo off
if not exist build-x64 mkdir build-x64
cd build-x64
REM Update your dependency directories below as necessary
cmake -G"Visual Studio 12" -A x64 -DOpenCV_DIR="C:\libs\opencv-2.4.10\build-x64" -DSFML_ROOT="C:\libs\SFML-2.3.2-64" -DPROTOBUF_SRC_ROOT_FOLDER="C:\libs\protobuf-2.6.1" .. && goto :copy_files
REM o... | @echo off
if not exist build-x64 mkdir build-x64
cd build-x64
REM Update your dependency directories below as necessary
cmake -G"Visual Studio 12" -Ax64 -DOpenCV_DIR="C:\libs\opencv-2.4.10\build-x64" -DSFML_ROOT="C:\libs\SFML-2.3.2-64" -DPROTOBUF_SRC_ROOT_FOLDER="C:\libs\protobuf-2.6.1" .. && goto :copy_files
REM on... | Remove extra space in project gen script | Remove extra space in project gen script
| Batchfile | apache-2.0 | orbbec/astra,orbbec/astra,orbbec/astra,orbbec/astra,orbbec/astra |
e35e6de4ec3aaabea9ac702655edb3fb7729fdea | CreateBoilerPlate.bat | CreateBoilerPlate.bat | git init
touch README.md
git add README.md
git add .gitignore
git commit -m"initial commit"
cd external
git submodule add --depth 1 -- https://github.com/fmtlib/fmt.git
git submodule add --depth 1 -- https://github.com/gabime/spdlog.git
git submodule add --depth 1 -- https://github.com/onqtam/doctest.git
cd ..
| git init
touch README.md
git add README.md
git add .gitignore
git commit -m"initial commit"
cd external
rmdir fmt
git submodule add --depth 1 -- https://github.com/fmtlib/fmt.git
rmdir spdlog
git submodule add --depth 1 -- https://github.com/gabime/spdlog.git
rmdir doctest
git submodule add --depth 1 -- https://github.... | Remove empty external dirs if present | Remove empty external dirs if present
| Batchfile | mit | Lectem/cpp-boilerplate,Lectem/cpp-boilerplate,Lectem/cpp-boilerplate |
a781d83ce70e1891880c620e7fe6f7667b1c113c | build_win_package.bat | build_win_package.bat | @echo off
set BIN_NAME=sqlitebiter
pip install --upgrade pip
pip install --upgrade .[build]
echo "----- start build -----"
pyinstaller cli.py --onefile --name %BIN_NAME% --clean --noconfirm --specpath build
echo "----- complete build -----"
echo "----- start compress -----"
set DIST_DIR_NAME=dist
set BIN_PATH=%DIST... | @echo off
set BIN_NAME=sqlitebiter
echo "----- start build -----"
pyinstaller cli.py --onefile --name %BIN_NAME% --clean --noconfirm --specpath build
echo "----- complete build -----"
echo "----- start compress -----"
set DIST_DIR_NAME=dist
set BIN_PATH=%DIST_DIR_NAME%/%BIN_NAME%.exe
set ARCHIVE_PATH=%DIST_DIR_NAME%... | Fix a build package for Windows fails on AppVeyor CI | Fix a build package for Windows fails on AppVeyor CI
| Batchfile | mit | thombashi/sqlitebiter,thombashi/sqlitebiter |
31c03d4127e7d2731860c085dbac494a43f5850f | prestore.cmd | prestore.cmd | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i
if "%nuget_path%"=="" goto :nonuget
set packages_path=%~dp0packages
if exist "%packages_path%\repositories.config" (
for /f "usebackq delims=" %%p in (`PowerShell -C "Get-Content '%packages_path%\repositories.config' | Select-Xml //rep... | @echo off
setlocal
for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i
if "%nuget_path%"=="" goto :nonuget
set packages_path=%~dp0packages
if exist "%packages_path%\repositories.config" (
for /f "usebackq delims=" %%p in (`PowerShell -C "[xml](Get-Content '%packages_path%\repositories.config') | Select-Xm... | Package restore script fixes (possibly some due to PowerShell 4 compatibility issues) | Package restore script fixes (possibly some due to PowerShell 4 compatibility issues)
| Batchfile | apache-2.0 | Thomas-Clark/elmah,bsagar27/elmah,shabbirh/elmah,weiminye/elmah,glisibor/elmah,UriHendler/elmah,kyleleeli/elmah,kevinrademan/elmah,Murtaza-libs/elmah,ywuwgij/elmah,rahulchrty/elmah,jonot/elmah,jonot/elmah,kevinrademan/elmah,radtek/elmah,radtek/elmah,tyagimanoj12/elmah,nobitagamer/elmah,kyleleeli/elmah,ronnyek/elmah,gli... |
966db25b262d1a753914ad105e0b0895293a4583 | 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
if exist %USERPROFILE%\_gvimrc goto END
echo Installing ... | @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 ... | Add log message for when the script is done. | Add log message for when the script is done.
| Batchfile | mit | tomku/dotfiles,tomku/dotfiles,tomku/dotfiles |
4c5f5e18bb8266c28602afb150ac2b3f89048cd5 | contrib/appveyor-mingw.bat | contrib/appveyor-mingw.bat | rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.7\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_PLAT... | rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.7\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_PLAT... | Add error check to build script | Appveyor: Add error check to build script
| Batchfile | isc | equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt |
68576fa183d1864bf050109486e0b870f6ec7654 | setup.bat | setup.bat | @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
call virtualenv\scripts\activate
pip install --use-mirrors argparse coverage doxypy lockfile pyserial unittest-xml-reporting
GOTO DONE
:DIRNOTEXISTS
python virtualenv.py virtualenv
GOTO DIREXISTS
:DONE
| @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
call virtualenv\scripts\activate
pip install --use-mirrors argparse coverage doxypy lockfile mock pyserial unittest-xml-reporting
GOTO DONE
:DIRNOTEXISTS
python virtualenv.py virtualenv
GOTO DIREXISTS
:DONE
| Add "mock" to the installed packages | Add "mock" to the installed packages
| Batchfile | agpl-3.0 | makerbot/conveyor,makerbot/conveyor,makerbot/conveyor,makerbot/conveyor |
c1c060fde0af87439b32443c0a875b72d7a85968 | Build/UploadWeb.cmd | Build/UploadWeb.cmd | xcopy ..\icons\favicon.ico ..\Web /Y
mkdir ..\Web\Examples
xcopy ..\documentation\images\series ..\Web\Examples /Y
..\Tools\Lynx\FtpUpload.exe %OXYPLOT_FTP_SERVER% %OXYPLOT_FTP_USER% %OXYPLOT_FTP_PASSWORD% ..\Web\*.* %OXYPLOT_FTP_FOLDER% /t=1 | xcopy ..\icons\favicon.ico ..\Web /Y
mkdir ..\Web\Examples
xcopy ..\documentation\images\series ..\Web\Examples /Y
..\Tools\Lynx\FtpUpload.exe ftp.oxyplot.org %OXYPLOT_FTP_USER% %OXYPLOT_FTP_PWD% ..\Web\*.* %OXYPLOT_FTP_FOLDER% /t=1 | Correct environment variable in build script | Correct environment variable in build script
| Batchfile | mit | DotNetDoctor/oxyplot,Kaplas80/oxyplot,lynxkor/oxyplot,Jonarw/oxyplot,Rustemt/oxyplot,TheAlmightyBob/oxyplot,GeertvanHorrik/oxyplot,olegtarasov/oxyplot,jeremyiverson/oxyplot,Isolocis/oxyplot,HermanEldering/oxyplot,H2ONaCl/oxyplot,freudenthal/oxyplot,br111an/oxyplot,Kaplas80/oxyplot,Mitch-Connor/oxyplot,olegtarasov/oxypl... |
00292561176ddf75d79ed7dd6803a8b55d2c3e86 | recipes/6s/bld.bat | recipes/6s/bld.bat | mkdir build
cd build
:: Configure.
cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% \
.
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| mkdir build
cd build
:: Configure.
cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%PREFIX% .
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| Update Windows build to deal with newline issue | Update Windows build to deal with newline issue
| Batchfile | bsd-3-clause | ceholden/staged-recipes,larray-project/staged-recipes,basnijholt/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,blowekamp/staged-recipes,sodre/staged-recipes,sannykr/staged-recipes,Juanlu001/staged-recipes,ReimarBauer/staged-recipes,sannykr/staged-recipes,petrushy/staged-recipes,hadim/staged-re... |
df66a3bbe9cb5236fa4a9b920691d7b84eae3fe2 | bin/rununittestsce.bat | bin/rununittestsce.bat | set QT=%1
set CETEST=%QT%\bin\cetest.exe
set CETEST_ARGS=-cache %QT%\.qmake.cache -libpath \Windows -f
%CETEST% %CETEST_ARGS% tests\auto\qvaluespace\qvaluespace.pro
%CETEST% %CETEST_ARGS% tests\auto\qvaluespaceprovider\qvaluespaceprovider.pro
%CETEST% %CETEST_ARGS% tests\auto\qvaluespacesubscriber\tst_qvaluespacesubs... | set QT=%1
set CETEST=%QT%\bin\cetest.exe
set CETEST_ARGS=-cache %QT%\.qmake.cache -libpath \Windows -f
%CETEST% %CETEST_ARGS% tests\auto\qvaluespace\qvaluespace.pro
%CETEST% %CETEST_ARGS% tests\auto\qvaluespaceprovider\qvaluespaceprovider.pro
%CETEST% %CETEST_ARGS% tests\auto\qvaluespacesubscriber\tst_qvaluespacesubs... | Remove unbuilt tests on Windows CE. | Remove unbuilt tests on Windows CE.
| Batchfile | lgpl-2.1 | kaltsi/qt-mobility,enthought/qt-mobility,tmcguire/qt-mobility,qtproject/qt-mobility,kaltsi/qt-mobility,enthought/qt-mobility,qtproject/qt-mobility,qtproject/qt-mobility,kaltsi/qt-mobility,tmcguire/qt-mobility,tmcguire/qt-mobility,tmcguire/qt-mobility,kaltsi/qt-mobility,kaltsi/qt-mobility,enthought/qt-mobility,KDE/andro... |
6e95c7411788eee6299ac7817bc222f214d9dbfc | msbuild.bat | msbuild.bat | call "%VS%\VC\vcvarsall.bat" x86
@echo on
cov-build --dir cov_dir msbuild.exe /m:1 /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" /t:"%TARGET%" %EXTRA% %FILE%
if errorlevel 1 goto error
cov-analyze --dir cov_dir -j auto --aggressiveness-level high --security --concurrency --preview --all --rule --enable... | call "%VS%\VC\vcvarsall.bat" x86
@echo on
msbuild.exe /m:1 /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" /t:"%TARGET%" %EXTRA% %FILE%
if errorlevel 1 goto error
exit 0
:error
exit 1
| Revert script pollution that was accidentally pushed | Revert script pollution that was accidentally pushed
Signed-off-by: Paul Durrant <dba6cd059c0054f8a3c62ba902cd9d7238853ee4@citrix.com>
| Batchfile | bsd-2-clause | QubesOS/qubes-vmm-xen-win-pvdrivers-xenbus,rneilturner/xenbus,rneilturner/xenbus,rneilturner/xenbus,omeg/xenbus,omeg/xenbus,MarkKMueller/xenbus,omeg/xenbus,MarkKMueller/xenbus,QubesOS/qubes-vmm-xen-win-pvdrivers-xenbus,MarkKMueller/xenbus,QubesOS/qubes-vmm-xen-win-pvdrivers-xenbus |
0fbc650add43d06323c33eb5b9e00a9745393dfd | Scripts/BuildGame.bat | Scripts/BuildGame.bat | @echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Test
set SessioName=Release
set SessionOwner=AutoBuild
rem =======================================================
rem Release variables
rem... | @echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Development
set SessioName=Release
set SessionOwner=AutoBuild
rem =======================================================
rem Release variab... | Stop doing "Test" builds for now | Stop doing "Test" builds for now
| Batchfile | bsd-3-clause | arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain |
2ab8119bda1c2a5afffa8c51982cf38c31800132 | build_win_package.bat | build_win_package.bat | @echo off
set BIN_NAME=sqlitebiter
pip install --upgrade pip
pip install --upgrade .[build]
echo "----- start build -----"
pyinstaller cli.py --onefile --name %BIN_NAME% --clean --noconfirm --specpath build
echo "----- complete build -----"
echo "----- start compress -----"
set DIST_DIR_NAME=dist
set BIN_PATH=%DIST... | @echo off
set BIN_NAME=sqlitebiter
pip install --upgrade pip
pip install --upgrade .[build]
echo "----- start build -----"
pyinstaller cli.py --onefile --name %BIN_NAME% --clean --noconfirm --specpath build
echo "----- complete build -----"
echo "----- start compress -----"
set DIST_DIR_NAME=dist
set BIN_PATH=%DIST... | Update a build script for Windows | Update a build script for Windows
| Batchfile | mit | thombashi/sqlitebiter,thombashi/sqlitebiter |
3dc1aa6d6731ab4d555c885a883046c112975f0f | build/build.bat | build/build.bat | @echo off
set release_name=OpenEMap-1.2.0-rc.1
echo ..\release\%release_name%
cd ..\release
rd /s /q %release_name%
del %release_name%.zip
md %release_name%
cd %release_name%
md config
md resources
cd..
sencha.exe compile --classpath=..\src\main\javascript,\libs\ext-4.2.1\src,\libs\geoext-2.0.1\src exclude -all and in... | @echo off
set release_name=OpenEMap-1.2.0-rc.1
echo ..\release\%release_name%
cd ..\release
rd /s /q %release_name%
del %release_name%.zip
del ..\%release_name%-all.js
del ..\%release_name%-all-debug.js
md %release_name%
cd %release_name%
md config
md resources
cd..
sencha.exe compile --classpath=..\src\main\javascrip... | Build script (windows) bug fixed | Build script (windows) bug fixed
| Batchfile | agpl-3.0 | Sundsvallskommun/OpenEMap-WebUserInterface,Sundsvallskommun/OpenEMap-WebUserInterface,Sundsvallskommun/OpenEMap-WebUserInterface |
310005402eecaff1aa24f290e97956bd04503972 | prep_vc2013.bat | prep_vc2013.bat | @echo off
for %%i in ("%~0") do set THIS_BAT_PATH=%%~dpi
set SAVE_CD=%CD%
cd %THIS_BAT_PATH%\deps\firebreath\
call prep2013.cmd "..\..\src" "..\..\build_win_vc2013" -Wno-dev
cd %SAVE_CD%
pause
| @echo off
for %%i in ("%~0") do set THIS_BAT_PATH=%%~dpi
set SAVE_CD=%CD%
cd %THIS_BAT_PATH%\deps\firebreath\
call prep2013.cmd "..\..\src" "..\..\build_win_vc2013" -Wno-dev "-DWITH_DYNAMIC_MSVC_RUNTIME=1"
cd %SAVE_CD%
pause
| Use dynamic CRT by default | Use dynamic CRT by default
for compatability with vanilla Qt builds
| Batchfile | lgpl-2.1 | RSATom/WebChimera,RSATom/WebChimera,RSATom/WebChimera,RSATom/WebChimera |
b984ff44df11bc1399da336aee55d29ac2e28064 | SDKBuildScripts/golang_build.bat | SDKBuildScripts/golang_build.bat | pushd ..
if [%1] == [] (
rem === BUILDING GolangSDK ===
node generate.js golangSDK=..\sdks\GolangSDK -apiSpecPath
) else (
rem === BUILDING GolangSDK with params %* ===
node generate.js golangSDK=..\sdks\GolangSDK %*
)
popd
| pushd ..
if [%1] == [] (
rem === BUILDING GolangSDK ===
node generate.js golangSDK=..\sdks\GolangSDK -apiSpecPath
) else (
rem === BUILDING GolangSDK with params %* ===
node generate.js golangSDK=..\sdks\GolangSDK %*
)
popd
pause | Add pause to golang bat for testing | Add pause to golang bat for testing
| Batchfile | apache-2.0 | JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator,JoshuaStrunk/SDKGenerator |
ae1a86396abf9ee46912027eed13232e50d5fe22 | MoreLinq/tt.cmd | MoreLinq/tt.cmd | @echo off
pushd "%~dp0"
for /f "tokens=*" %%f in ('dir /s /b *.tt') do (
echo>&2 dotnet t4 "%%f"
dotnet t4 "%%f" || goto :end
)
:end
popd
exit /b %ERRORLEVEL%
| @echo off
pushd "%~dp0"
for /f "tokens=*" %%f in ('dir /s /b *.tt') do (
echo>&2 dotnet t4 "%%f"
dotnet t4 "%%f" || goto :end
)
:end
popd
| Revert "Fix error propagation in T4 batch script" | Revert "Fix error propagation in T4 batch script" [ci skip]
This reverts commit 934fb39dd9be3b91138faa08ac7f54fafc608553.
| Batchfile | apache-2.0 | morelinq/MoreLINQ,morelinq/MoreLINQ |
1d4f43c178b81d43c59221ef60728b82441027d0 | Code/Maveric_myCopter/dfu-programming.bat | Code/Maveric_myCopter/dfu-programming.bat | Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 erase
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 get
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 flash Debug\MegaFly2.hex --suppress-bootloader-mem
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 reset
pause | Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 erase
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 get
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 flash Debug\MegaFly2.hex --suppress-bootloader-mem
Library\DFU-programmer\DFU\dfu-programmer at32uc3c1512 reset
REM pause | Remove pause in dfu bat file | Remove pause in dfu bat file
| Batchfile | bsd-3-clause | gburri/MAVRIC_Library,lis-epfl/MAVRIC_Library,gburri/MAVRIC_Library,lis-epfl/MAVRIC_Library,lis-epfl/MAVRIC_Library,gburri/MAVRIC_Library |
ed4cfae06a547f671be97c382e76294dce4e8a29 | pciserial/buildAll.bat | pciserial/buildAll.bat | setlocal
call clean.bat
call ..\Tools\SetVsEnv x86
mkdir Install\rhel
copy qemupciserial.* .\Install\
inf2cat /driver:Install /uselocaltime /os:XP_X86,Server2003_X86,XP_X64,Server2003_X64,Vista_X86,Server2008_X86,Vista_X64,Server2008_X64,7_X86,7_X64,Server2008R2_X64,8_X86,8_X64,Server8_X64,6_3_X86,6_3_X64,Server6_3_X... | setlocal
call clean.bat
call ..\Tools\SetVsEnv x86
mkdir Install\rhel
copy qemupciserial.* .\Install\
inf2cat /driver:Install /uselocaltime /os:8_X86,8_X64,Server8_X64,6_3_X86,6_3_X64,Server6_3_X64,10_X86,10_X64,Server10_X64
copy rhel\qemupciserial.* .\Install\rhel
inf2cat /driver:Install\rhel /uselocaltime /os:8_X8... | Remove code for legacy OSes | pciserial: Remove code for legacy OSes
Signed-off-by: Kostiantyn Kostiuk <88b496cab076c092c564e40d69a70d175fb00bcc@daynix.com>
| Batchfile | bsd-3-clause | vrozenfe/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows... |
a6a6821cbe58add59b83f7a2883cd548e178affe | 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%
if exist node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu_s21_5
) else (
cmd /c npm install https:/... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist node_modules\azure-cli\bin\azure (
cmd /c npm update git://github.com/amitapl/azure-sdk-tools-xplat.git#kudu_s21_5
) else (
cmd /c npm install git://github.... | Change npm install api for installing azure-cli as the tarball api seems to be broken. | Change npm install api for installing azure-cli as the tarball api seems to be broken.
| Batchfile | apache-2.0 | kenegozi/kudu,sitereactor/kudu,uQr/kudu,shrimpy/kudu,sitereactor/kudu,bbauya/kudu,kali786516/kudu,shibayan/kudu,uQr/kudu,kenegozi/kudu,WeAreMammoth/kudu-obsolete,dev-enthusiast/kudu,shibayan/kudu,projectkudu/kudu,duncansmart/kudu,shibayan/kudu,chrisrpatterson/kudu,shibayan/kudu,shrimpy/kudu,kali786516/kudu,shanselman/k... |
a83eb33e308242609b2f6c3b66c9e5074eb9e028 | recipes/fltk/bld.bat | recipes/fltk/bld.bat | mkdir build
cd build
cmake -G "NMake Makefiles" ^
-DCMAKE_INSTALL_PREFIX="%PREFIX%" ^
-DCMAKE_BUILD_TYPE=Release ^
%SRC_DIR%
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Test.
ctest
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| mkdir build
cd build
cmake -G "NMake Makefiles" ^
-DCMAKE_INSTALL_PREFIX="%PREFIX%" ^
-DCMAKE_BUILD_TYPE=Release ^
%SRC_DIR%
if errorlevel 1 exit 1
:: Build.
nmake
if errorlevel 1 exit 1
:: Install.
nmake install
if errorlevel 1 exit 1
| Remove ctest that doesn't do anything | Remove ctest that doesn't do anything
Prevents installation?
| Batchfile | bsd-3-clause | shadowwalkersb/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,basnijholt/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,sodre/staged-recipes,birdsarah/staged... |
5cb9ba91fe48e92b4d6300dd4a089621b846cc89 | 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 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
db3e5165e93bd992f84f77b14dcb1f7e09b27098 | Build.cmd | Build.cmd | @echo off
git rev-parse HEAD > version.txt
bundle exec middleman build %*
| @echo off
SET PATH=%PATH%;D:\home\site\deployments\tools\r\ruby-2.2.2-x64-mingw32\bin
git rev-parse HEAD > version.txt
bundle exec middleman build %*
| Update PATH before calling build command. | Update PATH before calling build command.
| Batchfile | mit | martincostello/blog,martincostello/blog,martincostello/blog |
f53a91eb4b9ac3b4f0fc7e196c1a87ad05a1fe91 | bootstrap/roo-dev.bat | bootstrap/roo-dev.bat | @echo off
if not "%ROO_CLASSPATH_FILE%" == "" goto ok
echo Must set ROO_CLASSPATH_FILE to X:\checkout\spring-roo\bootstrap\target\roo_classpath.txt
exit /b
:ok
rem echo Using Roo classpath file [%ROO_CLASSPATH_FILE%]
rem Will be only one line, but the following obvious form doesn't work
rem set /p ROO_CP=< ... | @echo off
if not "%ROO_CLASSPATH_FILE%" == "" goto ok
echo Must set ROO_CLASSPATH_FILE to X:\checkout\spring-roo\bootstrap\target\roo_classpath.txt
exit /b
:ok
rem echo Using Roo classpath file [%ROO_CLASSPATH_FILE%]
rem Will be only one line, but the following obvious form doesn't work
rem set /p ROO_CP=< ... | Add third-party add-on creation and management infrastructure | ROO-287: Add third-party add-on creation and management infrastructure
| Batchfile | apache-2.0 | rwl/requestfactory-addon |
549dd9137ebf0d030e3dccb2e6bfc1100675ffbc | tools/release_win.bat | tools/release_win.bat | rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
rmdir /q /s dist\*.*
del /s /q dist\*.*
rem ****** Compile our executable and core zipfile
python setup.py py2e... | rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
del /s /f /q dist
rem ****** Compile our executable and core zipfile
python setup.py py2exe
rem ****** Remove... | Remove wildcard from del statement | Remove wildcard from del statement | Batchfile | apache-2.0 | somehume/namebench |
eca532fc7dffbeb23012b93efc8cf0f779e2b1e8 | build/windows_c.cmd | build/windows_c.cmd | @REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all... | @REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all... | Remove run E2E tests options from Windows C build | Remove run E2E tests options from Windows C build
| Batchfile | mit | clemensv/azure-event-hubs,clemensv/azure-event-hubs,clemensv/azure-event-hubs,clemensv/azure-event-hubs,clemensv/azure-event-hubs,clemensv/azure-event-hubs |
b997b4fdfbb2aecd3e670a2206728996285310fc | cibuild.cmd | cibuild.cmd | call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
msbuild /v:m /m BuildAndTest.proj /p:CIBuild=true
if ERRORLEVEL 1 (
echo Build failed
exit /b 1
)
REM Kill any instances of VBCSCompiler.exe to release locked files;
REM otherwise future CI runs may fail while trying to delete thos... | call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
msbuild /v:m /m BuildAndTest.proj /p:CIBuild=true
if ERRORLEVEL 1 (
taskkill /F /IM vbcscompiler.exe
echo Build failed
exit /b 1
)
REM Kill any instances of VBCSCompiler.exe to release locked files;
REM otherwise future CI runs... | Kill server on build failure too. | Kill server on build failure too.
| Batchfile | mit | CyrusNajmabadi/roslyn,dpen2000/roslyn,OmarTawfik/roslyn,bbarry/roslyn,ErikSchierboom/roslyn,MatthieuMEZIL/roslyn,khyperia/roslyn,MatthieuMEZIL/roslyn,krishnarajbb/roslyn,basoundr/roslyn,AmadeusW/roslyn,AlexisArce/roslyn,ahmedshuhel/roslyn,sharadagrawal/TestProject2,OmarTawfik/roslyn,danielcweber/roslyn,AArnott/roslyn,c... |
81f28a0c7c0137f4f52920f469de3975680ee4cd | 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.73" -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.74" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.74 update | [Nomad] Patch for version 0.74 update
| Batchfile | mit | Visagalis/Oxide,LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide |
ac0aac949b323fb51746c93ae83d9963098ea971 | package/windows/create_64bit_app.bat | package/windows/create_64bit_app.bat | cd ..\..\
mkdir gui\deploy
:: edit iss file -> AppVersion
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
:: edit -> -BappVersion and -srcfiles
:: 64 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
call "C:\Program Files\Java\jdk1.8.0_92\bin\javapackager.exe" -deploy -Ba... | cd ..\..\
mkdir gui\deploy
:: edit iss file -> AppVersion
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
:: edit -> -BappVersion and -srcfiles
:: 64 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
SET version=0.4.9
SET jdk=C:\Program Files\Java\jdk1.8.0_92
SET outdir... | Add Xbootclasspath for windows (still not working with the app, but with the jar) | Add Xbootclasspath for windows (still not working with the app, but with the jar)
| Batchfile | agpl-3.0 | haiqu/bitsquare,bitsquare/bitsquare,ManfredKarrer/exchange,sakazz/exchange,bisq-network/exchange,haiqu/bitsquare,ManfredKarrer/exchange,sakazz/exchange,bisq-network/exchange,bitsquare/bitsquare |
7c15bc5200667d5896983d2e0113fc8a1d4e6f60 | build.cmd | build.cmd | @echo off
cls
.nuget\nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion -Version 2.17.9
.nuget\nuget.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion
.nuget\nuget.exe install FSharp.Formatting -OutputDirectory packages -ExcludeVersion
SET TARGET="All"
IF NOT [%1]==[] (set TARGET="... | @echo off
cls
.nuget\nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion
.nuget\nuget.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion
.nuget\nuget.exe install FSharp.Formatting -OutputDirectory packages -ExcludeVersion
SET TARGET="All"
IF NOT [%1]==[] (set TARGET="%1")
"packages\... | Remove version from FAKE install. | Remove version from FAKE install.
Clean install solved the problem.
| Batchfile | bsd-3-clause | sideeffffect/FsCheck,forki/FsCheck,paulyoung/FsCheck,ploeh/FsCheck,cloudRoutine/FsCheck,ErikSchierboom/FsCheck,fscheck/FsCheck,jhamm/FsCheck,paulyoung/FsCheck,fscheck/FsCheck,fsharp/FsCheck,forki/FsCheck,cloudRoutine/FsCheck |
d6ccf6f20cfc29693e6b2cdc91f26ecf17d03fa0 | daemon/build32.bat | daemon/build32.bat | set project=clibudp
rem //expected build dir structure
set buildexp=build\\Visual_Studio_12_2013\\x86
set currentdir=%cd%
set builddir=.\\%buildexp%
mkdir %builddir%
rem //get path to clibcdc libs
set clibcdc=..\\..\\clibcdc\\%buildexp%
pushd %clibcdc%
set clibcdc=%cd%
popd
rem //launch cmake to generate build env... | set project=clibudp
rem //expected build dir structure
set buildexp=build\\Visual_Studio_12_2013\\x86
set currentdir=%cd%
set builddir=.\\%buildexp%
set libsdir=..\\libs
mkdir %builddir%
rem //get path to clibcdc libs
set clibcdc=%libsdir%\\clibcdc\\%buildexp%
pushd %clibcdc%
set clibcdc=%cd%
popd
rem //get path t... | Fix build script for MS Windows x86 | Fix build script for MS Windows x86
Signed-off-by: Roman3349 <6b7cbc66756660b4790b3af1ec1507653acaa035@centrum.cz>
| Batchfile | apache-2.0 | iqrfsdk/iqrf-daemon,iqrfsdk/iqrf-daemon,iqrfsdk/iqrf-daemon,iqrfsdk/iqrf-daemon |
6fbccd06374456eef28301f58826dbe02755ee39 | Games/Unity/Oxide.Game.TheForest/Files/Windows/_start-example.bat | Games/Unity/Oxide.Game.TheForest/Files/Windows/_start-example.bat | @echo off
cls
:start
echo Starting server...
TheForest -batchmode -nographics -ip 0.0.0.0 -port 27000 -maxplayers 10 -hostname "My Oxide Server" -friendsonly 0
echo.
echo Restarting server...
echo.
goto start
| @echo off
cls
:start
echo Starting server...
TheForest -batchmode -nographics -ip 0.0.0.0 -port 27016 -maxplayers 10 -hostname "My Oxide Server" -friendsonly 0
echo.
echo Restarting server...
echo.
goto start
| Set default port in .bat to what it should be | [TheForest] Set default port in .bat to what it should be
| Batchfile | mit | Visagalis/Oxide,Visagalis/Oxide,LaserHydra/Oxide,Nogrod/Oxide-2,bawNg/Oxide,Nogrod/Oxide-2,bawNg/Oxide,LaserHydra/Oxide |
55d9c1e2626ba105c499f17a5d85617d025a5122 | bin/reader_browser.bat | bin/reader_browser.bat | @echo off
set PYTHONPATH=%CD%
C:\Python27\python.exe reader_browser\reader_browser.py %*
| @echo off
set PYTHONPATH=%CD%
python reader_browser\reader_browser.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 |
3d3e75747d2b14904d2307a6881ed30f7a6c4436 | build.bat | build.bat | @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces-1.4.3.jar;tools\lib\velocity-1.3-dev.jar;tools\lib\jdom-b7.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| Use velocity and jdom that was copied from jakarta-site2 | Use velocity and jdom that was copied from jakarta-site2
git-svn-id: de9d04cf23151003780adc3e4ddb7078e3680318@107714 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | rouazana/james,rouazana/james,chibenwa/james,chibenwa/james,aduprat/james,rouazana/james,rouazana/james,aduprat/james,aduprat/james,aduprat/james,chibenwa/james,chibenwa/james |
81b47bfd48c027083291003ee866be08d96dde5b | scripts/build.bat | scripts/build.bat | @echo off
if not exist "genie.exe" (
echo Downloading genie...
bitsadmin /transfer "genie" "https://github.com/bkaradzic/bx/raw/master/tools/bin/windows/genie.exe" "%~dp0\genie.exe"
)
IF "%1"=="" (
echo No argument set
echo Exemple : build.bat vs2015
exit 1
)
genie.exe %*
| @echo off
if not exist "genie.exe" (
echo Downloading genie...
rem bitsadmin /transfer "genie" "https://github.com/bkaradzic/bx/raw/master/tools/bin/windows/genie.exe" "%~dp0\genie.exe"
powershell Invoke-WebRequest -Uri "https://github.com/bkaradzic/bx/raw/master/tools/bin/windows/genie.exe" -OutFile "%~dp0\genie.e... | Use powershell instead of bitsadmin for download genie.exe | Use powershell instead of bitsadmin for download genie.exe
| Batchfile | mit | thennequin/ImWindow,thennequin/ImWindow,thennequin/ImWindow |
9061d50bdcaf9b46892a89a967e47647e6457520 | CreateBoilerPlate.bat | CreateBoilerPlate.bat | git init
touch README.md
git add README.md
git add .gitignore
git commit -m"initial commit"
cd external
git submodule add --depth 1 -- https://github.com/fmtlib/fmt.git
git submodule add --depth 1 -- https://github.com/gabime/spdlog.git
cd ..
| git init
touch README.md
git add README.md
git add .gitignore
git commit -m"initial commit"
cd external
git submodule add --depth 1 -- https://github.com/fmtlib/fmt.git
git submodule add --depth 1 -- https://github.com/gabime/spdlog.git
git submodule add --depth 1 -- https://github.com/onqtam/doctest.git
cd ..
| Fix batch script missing submodule | Fix batch script missing submodule
| Batchfile | mit | Lectem/cpp-boilerplate,Lectem/cpp-boilerplate,Lectem/cpp-boilerplate |
46982b56448d337d3c5f058e4024a211b6c9c466 | 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.91" -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.92" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.92 update | [Nomad] Patch for version 0.92 update
| Batchfile | mit | Visagalis/Oxide,Visagalis/Oxide,LaserHydra/Oxide,LaserHydra/Oxide |
934fb39dd9be3b91138faa08ac7f54fafc608553 | MoreLinq/tt.cmd | MoreLinq/tt.cmd | @echo off
pushd "%~dp0"
for /f "tokens=*" %%f in ('dir /s /b *.tt') do (
echo>&2 dotnet t4 "%%f"
dotnet t4 "%%f" || goto :end
)
:end
popd
| @echo off
pushd "%~dp0"
for /f "tokens=*" %%f in ('dir /s /b *.tt') do (
echo>&2 dotnet t4 "%%f"
dotnet t4 "%%f" || goto :end
)
:end
popd
exit /b %ERRORLEVEL%
| Fix error propagation in T4 batch script | Fix error propagation in T4 batch script [ci skip]
| Batchfile | apache-2.0 | morelinq/MoreLINQ,morelinq/MoreLINQ |
48f0be1d6eff9721a7e44d8546638b8e0d8b4776 | install.bat | install.bat | git flow version > NUL
if %ERRORLEVEL% GEQ 1 (
copy gitflow-windows-dependencies\* "C:\Program Files (x86)\Git\bin"
cd gitflow
contrib\msysgit-install.cmd "C:\Program Files (x86)\Git"
)
echo "Installing..."
copy git-release "C:\Program Files (x86)\Git\bin"
echo "Done!"
| git flow version > NUL
if %ERRORLEVEL% GEQ 1 (
copy gitflow-windows-dependencies\* "C:\Program Files (x86)\Git\bin"
pushd gitflow
contrib\msysgit-install.cmd "C:\Program Files (x86)\Git"
popd
)
echo "Installing..."
copy git-release "C:\Program Files (x86)\Git\bin"
echo "Done!"
| Use pushd instead of cd | Use pushd instead of cd
| Batchfile | mit | Rocketmakers/gitflow-semver,Rocketmakers/gitflow-semver |
923b8b93960a88b1ed0852ef826fed49bf3ebd79 | Tools/Build/FindVisualStudio.bat | Tools/Build/FindVisualStudio.bat | @REM Starts Visual Studio Developer Command Prompt.
@IF DEFINED VisualStudioVersion EXIT /B 0
@REM https://developercommunity.visualstudio.com/content/problem/26780/vsdevcmdbat-changes-the-current-working-directory.html
SET "VSCMD_START_DIR=%CD%"
@REM VS2017 uses vswhere.exe for locating the installation.
FOR ... | @REM Starts Visual Studio Developer Command Prompt.
@IF DEFINED VisualStudioVersion EXIT /B 0
@REM https://developercommunity.visualstudio.com/content/problem/26780/vsdevcmdbat-changes-the-current-working-directory.html
SET "VSCMD_START_DIR=%CD%"
@REM VS2017 uses vswhere.exe for locating the installation.
FOR ... | Build script: Better error handling if cannot locate Visual Studio. | Build script: Better error handling if cannot locate Visual Studio.
| Batchfile | agpl-3.0 | bantolov/Rhetos |
c47e8d2e5f9e4edda828363098afb469d951fcdc | Games/Other/Oxide.Game.Nomad/Files/_start-example.bat | Games/Other/Oxide.Game.Nomad/Files/_start-example.bat | @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.92" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
timeout /t 10
echo.
goto start
| @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.93" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
timeout /t 10
echo.
goto start
| Patch for version 0.93 update | [Nomad] Patch for version 0.93 update
| Batchfile | mit | LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide,Visagalis/Oxide |
b6dd5a596066584d2bb813bb8e954b37ab310977 | conda/nd.recipe/bld.bat | conda/nd.recipe/bld.bat | cd %RECIPE_DIR%
cd ..\..\
python setup.py install --target=nd --single-version-externally-managed --record=record.txt || exit 1
rd /s /q %SP_DIR%\__pycache__
rd /s /q %SP_DIR%\numpy
rd /s /q %SP_DIR%\Cython
| cd %RECIPE_DIR%
cd ..\..\
%PYTHON% setup.py install --target=nd --single-version-externally-managed --record=record.txt || exit 1
rd /s /q %SP_DIR%\__pycache__
rd /s /q %SP_DIR%\numpy
rd /s /q %SP_DIR%\Cython
| Make sure the Python from the build environment is used when building dynd.nd. | Make sure the Python from the build environment is used when building
dynd.nd.
| Batchfile | bsd-2-clause | ContinuumIO/dynd-python,ContinuumIO/dynd-python,insertinterestingnamehere/dynd-python,izaid/dynd-python,ContinuumIO/dynd-python,mwiebe/dynd-python,mwiebe/dynd-python,izaid/dynd-python,insertinterestingnamehere/dynd-python,insertinterestingnamehere/dynd-python,ContinuumIO/dynd-python,mwiebe/dynd-python,insertinteresting... |
e68d5ac9e196c4f750c07a65a0d5ac7c2fe158c5 | makeremoterepo.cmd | makeremoterepo.cmd | @echo OFF
setlocal ENABLEDELAYEDEXPANSION
IF [%1]==[] GOTO :USAGE
set MKREPO_PATH=%1
SET MKREPO_PATH=%MKREPO_PATH:/=\%
REM Check if its fully qualified.
echo %MKREPO_PATH% | findstr /b ^\\\\ >nul
IF ERRORLEVEL 1 (
echo ERROR: "%MKREPO_PATH%" is not a fully qualified UNC share name.
exit /b 1
)
REM FI... | @echo OFF
setlocal ENABLEDELAYEDEXPANSION
IF [%1]==[] GOTO :USAGE
set MKREPO_PATH=%1
SET MKREPO_PATH=%MKREPO_PATH:/=\%
REM Check if its fully qualified.
echo %MKREPO_PATH% | findstr /b ^\\\\ >nul
IF ERRORLEVEL 1 (
echo ERROR: "%MKREPO_PATH%" is not a fully qualified UNC share name.
exit /b 1
)
REM FI... | Validate if the folder passed in is a git repo and terminate if not. | Validate if the folder passed in is a git repo and terminate if not.
| Batchfile | mit | SajayAntony/makerepo |
c654e58c538cc0174266e4604b2291630ee9f6b9 | ci/appveyor-install.bat | ci/appveyor-install.bat | set CACHE=C:\cache
set CYGWIN_MIRROR="http://cygwin.mirror.constant.com"
set CYGWIN_ADDITIONAL_REPO="http://www.dronecode.org.uk/cygwin/"
set CYGWIN_ADDITIONAL_REPO_KEY="http://www.dronecode.org.uk/cygwin/dronecode.gpg"
if _%arch%_ == _x64_ set SETUP=setup-x86_64.exe && set CYGWIN_ROOT=C:\cygwin64
if _%arch%_ == _x86_... | 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 prere... | Revert "Add an additional Cygwin package repo with patched ninja" | Revert "Add an additional Cygwin package repo with patched ninja"
This reverts commit 92c2bb75195c054dcdeae09f7d42393856a91748.
This is no longer needed, as a patched ninja is now available from the
standard Cygwin package repository, and prevents me from accidentally
breaking CI when changing things in my personal p... | Batchfile | apache-2.0 | MathieuDuponchelle/meson,trhd/meson,jpakkane/meson,becm/meson,becm/meson,pexip/meson,QuLogic/meson,mesonbuild/meson,jpakkane/meson,trhd/meson,becm/meson,jeandet/meson,QuLogic/meson,trhd/meson,MathieuDuponchelle/meson,QuLogic/meson,pexip/meson,pexip/meson,jeandet/meson,mesonbuild/meson,mesonbuild/meson,mesonbuild/meson,... |
3e7a3484d0640a2a0f4e6a479c9f93b525512679 | build-windows.cmd | build-windows.cmd | set SOURCE_DIR=%CD%
set BUILD_DIR="../build-sqlitewrapper"
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt\Tools\QtCreator\bin\jom.exe /J 2
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"
python projectfiles_unchanged.py
if %ERRORLEVEL% NEQ 0 (
RMDIR /S /Q "%BUILD_DIR%"
)
i... | set SOURCE_DIR=%CD%
set BUILD_DIR=../build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt\Tools\QtCreator\bin\jom.exe /J 2
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"
python projectfiles_unchanged.py
if %ERRORLEVEL% NEQ 0 (
RMDIR /S /Q "%BUILD_DIR%"
)
if ... | Remove quotes from path variable definition | Remove quotes from path variable definition
| Batchfile | bsd-3-clause | kullo/smartsqlite,kullo/smartsqlite,kullo/smartsqlite |
749133f6584eccc45769b4f0976eaf4686fe94c2 | runbuild.cmd | runbuild.cmd | @@@ setlocal
@@@ for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set msbuild=%windir%\Microsoft.NET\Framework\%%i\msbuild.exe
@@@ if not defined msbuild (echo MSBuild.exe not found>&2 & exit /b 42)
@@@ if defined msbuild "%msbuild%" ... | @echo off
setlocal
for %%a in (%*) do echo "%%a" | findstr /C:"mono">nul && set buildtool=xbuild.bat
if not defined buildtool for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set buildtool=%windir%\Microsoft.NET\Framework\%%i\msbuild.... | Build using xbuild on Windows for mono | Build using xbuild on Windows for mono
| Batchfile | mit | nunit/nunit-console,nunit/nunit-console,nunit/nunit-console |
077485893518e6ad65b91a2da485e9f325adccb2 | bin/deploy.bat | bin/deploy.bat | @echo off
REM Ensure we've set things up properly
if [%1] == [] goto Fail
REM Get authentication information
set connection=%1
REM Convert the working directory to something scp can use
REM First grab the invocation directory (/bin)
set cwd=%~dp0
REM Replace \ slashes with / slashes
set cwd=%cwd:\=/%
REM Replace c: ... | @echo off
REM Ensure we've set things up properly
if [%1] == [] goto Fail
REM Get authentication information
set connection=%1
REM Convert the working directory to something scp can use
REM First grab the invocation directory (/bin)
set cwd=%~dp0
REM Replace \ slashes with / slashes
set cwd=%cwd:\=/%
REM Replace c: ... | Remove what we don't need | Remove what we don't need
| Batchfile | mit | ericmann/itinerant-jenkins |
8b0c60ec6a5fe8959f055333b6f2dc7e1283d955 | src/build.cmd | src/build.cmd | @echo off
::Compiles the Visual Studio solution.
pushd "%~dp0"
rem Project settings
set SOLUTION_FILE=NanoByte.Common.sln
rem Determine VS version
if defined VS140COMNTOOLS (
::Visual Studio 2015
call "%VS140COMNTOOLS%vsvars32.bat"
goto vs_ok
)
echo ERROR: No Visual Studio installation found. >&2
... | @echo off
::Compiles the Visual Studio solution.
pushd "%~dp0"
rem Project settings
set SOLUTION_FILE=NanoByte.Common.sln
rem Determine VS version
if defined VS140COMNTOOLS (
::Visual Studio 2015
call "%VS140COMNTOOLS%vsvars32.bat"
goto vs_ok
)
echo ERROR: No Visual Studio installation found. >&2
... | Build script: Run MSBuild multi-threaded | Build script: Run MSBuild multi-threaded
| Batchfile | mit | nano-byte/common,nano-byte/common |
89f1e6732ec0f18ae6d09cee3c8795f5a752514f | local-cli/setup_env.bat | local-cli/setup_env.bat | /**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
| :: Copyright (c) 2015-present, Facebook, Inc.
:: All rights reserved.
::
:: This source code is licensed under the BSD-style license found in the
:: LICENSE file in the root directory of this source tree. An additional grant
:: of patent rights can be found in the PATENTS file in the same directory.
| Fix comments on .bat file | Fix comments on .bat file | Batchfile | bsd-3-clause | Purii/react-native,dabit3/react-native,zenlambda/react-native,csatf/react-native,xiayz/react-native,Maxwell2022/react-native,udnisap/react-native,mironiasty/react-native,HealthyWealthy/react-native,iodine/react-native,satya164/react-native,timfpark/react-native,catalinmiron/react-native,compulim/react-native,cdlewis/re... |
03d81dcf0502c85b586262651c026ac3b0621159 | msys_setup_7zip.bat | msys_setup_7zip.bat | if %sentinel% NEQ __sentinel__ exit
call %tmp%\wget_and_install.bat http://downloads.sourceforge.net/sevenzip 7z465.msi %base_dir%\7z
| if %sentinel% NEQ __sentinel__ exit
call %tmp%\wget_and_install.bat http://downloads.sourceforge.net/sevenzip 7z920.msi %base_dir%\7z
| Update 7zip to version 9.20 | Update 7zip to version 9.20
| Batchfile | lgpl-2.1 | photron/msys_setup,photron/msys_setup,photron/msys_setup |
c908cfb0c0d795d915ff70f1370cad91419a4bc6 | build.bat | build.bat | @echo off
REM Download Mingw 64 on Windows from http://win-builds.org/download.html
set GOARCH=%1
IF "%1" == "" (set GOARCH=amd64)
set ORG_PATH=github.com\hashicorp
set REPO_PATH=%ORG_PATH%\consul
set GOPATH=%cd%\gopath
rmdir /s /q %GOPATH%\src\%REPO_PATH% 2>nul
mkdir %GOPATH%\src\%ORG_PATH% 2>nul
go get .\...
mkli... | @echo off
REM Download Mingw 64 on Windows from http://win-builds.org/download.html
set GOARCH=%1
IF "%1" == "" (set GOARCH=amd64)
set ORG_PATH=github.com\hashicorp
set REPO_PATH=%ORG_PATH%\consul
set GOPATH=%cd%\gopath
rmdir /s /q %GOPATH%\src\%REPO_PATH% 2>nul
mkdir %GOPATH%\src\%ORG_PATH% 2>nul
go get -u .\...
m... | Add missing switch -u, which updates packages | Add missing switch -u, which updates packages
| Batchfile | mpl-2.0 | msn217/consul,bodepd/consul,mfischer-zd/consul,tugbabodrumlu/consul,wuub/consul,marouenj/consul,zeroae/consul,dankraw/consul,jovandeginste/consul,AlphaStaxLLC/consul,zendesk/consul,wuub/consul,andygoalkeeper/consul,Pivotal-Pierre-Delagrave/consul,half-dead/consul,pdf/consul,vamage/consul,Thib17/consul,42wim/consul,alou... |
e13551389b3894a7dcd7381fe7448889132b18ab | .buildkite/sign_windows_installer.bat | .buildkite/sign_windows_installer.bat | @echo off
rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent.
rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact.
rem To sign the Windows installer set the `SIGN_WINDOWS_INSTALLER=true` environme... | @echo off
rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent.
rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact.
rem To sign the Windows installer set the `SIGN_WINDOWS_INSTALLER=true` environme... | Change the don’t sign message log. | Change the don’t sign message log.
| Batchfile | mit | lyw07/kolibri,mrpau/kolibri,jonboiser/kolibri,mrpau/kolibri,benjaoming/kolibri,lyw07/kolibri,jonboiser/kolibri,lyw07/kolibri,benjaoming/kolibri,benjaoming/kolibri,indirectlylit/kolibri,jonboiser/kolibri,lyw07/kolibri,mrpau/kolibri,indirectlylit/kolibri,indirectlylit/kolibri,mrpau/kolibri,indirectlylit/kolibri,DXCanas/k... |
f3a25630f9736109042d03d38a785e44a8f368e0 | Build/MakeSharpDX.CertificationTests.VS2013.cmd | Build/MakeSharpDX.CertificationTests.VS2013.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | Fix path to SharpDX.build for certification tests. | [Build] Fix path to SharpDX.build for certification tests.
| Batchfile | mit | sharpdx/Toolkit,sharpdx/Toolkit,tomba/Toolkit |
b2bea4b9d1b5dfe543f2edd625c1143c98f7b1c2 | build.bat | build.bat | REM If GitVersion is not available then run
REM cinst GitVersion.Portable
REM to install it
GitVersion.exe /output buildserver /exec scripts\lib\FAKE\tools\Fake.exe /execArgs "scripts\build.fsx %1" /l console
| REM If GitVersion is not available then run
REM cinst GitVersion.Portable
REM to install it
GitVersion.exe /output buildserver /exec scripts\lib\FAKE\tools\Fake.exe /execArgs "scripts\build.fsx %1 %2 %3 %4 %5 %6 %7 %8 %9 " /l console
| Allow more arguments to fake | Allow more arguments to fake
| Batchfile | mit | Weingartner/Migrations.Json.Net |
6097ac7a69be5a2a6e9f3f1decfad812b2b1d950 | build.cmd | build.cmd | @echo Off
pushd %~dp0
setlocal
:Build
call npm install
call npm run check
call npm run build
call npm run lint
call npm run coverage:teamcity
call npm run integration-test
call npm run integration-test-stdin-windows
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
:BuildFail
echo.
echo *** BUILD FAILED ***
got... | @echo Off
pushd %~dp0
setlocal
:Build
call npm install
if %ERRORLEVEL% neq 0 goto BuildFail
call npm run check
if %ERRORLEVEL% neq 0 goto BuildFail
call npm run build
if %ERRORLEVEL% neq 0 goto BuildFail
call npm run lint
if %ERRORLEVEL% neq 0 goto BuildFail
call npm run coverage:teamcity
if %ERRORLEVEL% neq 0 got... | Build script should fail for problems | Build script should fail for problems
| Batchfile | mit | ritterim/markdown-proofing |
b88d1b3db44560de5ff8ad4b499d350f6461f384 | Tools/AppVeyor-install.bat | Tools/AppVeyor-install.bat | @echo on
git submodule update --init --recursive
cd Agiil.Web
npm install
cd ..
nuget restore Agiil.sln | @echo on
git submodule update --init --recursive
nuget restore Agiil.sln
cd Agiil.Web
REM It's very strange but this has to be the last line of the script.
REM As soon as it completes, this script is terminated and nothing afterwards
REM is executed.
npm install
| Reorder build script to work around unexplained error | Reorder build script to work around unexplained error
| Batchfile | mit | csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil |
e4593da36448becdd2b66b6f06c2e36c7a7044f6 | build/UpdateAndroidSdk.cmd | build/UpdateAndroidSdk.cmd | echo y | "%ANDROID_HOME%/tools/android.bat" update sdk --no-ui --all --filter android-10,android-23,platform-tools,tools,build-tools-23.0.3
| echo y | "%ANDROID_HOME%/tools/android.bat" --silent update sdk --no-ui --all --filter android-10,android-23,platform-tools,tools,build-tools-23.0.3
| Set --silent to reduce android sdk logs (hopefully). | Set --silent to reduce android sdk logs (hopefully).
| Batchfile | apache-2.0 | msgpack/msgpack-cli,msgpack/msgpack-cli |
f0c55a8c4a9b26771ca66fa1c73f5b6b230bf143 | robozonky-distribution/robozonky-distribution-installer/src/main/assembly/filtered-resources/install-robozonky.bat | robozonky-distribution/robozonky-distribution-installer/src/main/assembly/filtered-resources/install-robozonky.bat | set "ROBOZONKY_EXECUTABLE=${com.github.robozonky.distribution.jar}"
set "HERE=%~dp0%"
echo Will run %ROBOZONKY_EXECUTABLE% from '%HERE%'.
rem Use Java runtime bundled with RoboZonky, if available.
set "CUSTOM_JRE_LOCATION=%HERE%runtime\"
set "JAVA_EXECUTABLE=java.exe"
IF EXIST %CUSTOM_JRE_LOCATION%bin\%JAVA_EXECUTABL... | set "ROBOZONKY_EXECUTABLE=${com.github.robozonky.distribution.jar}"
set "HERE=%~dp0%"
echo Will run %ROBOZONKY_EXECUTABLE% from '%HERE%'.
rem Use Java runtime bundled with RoboZonky, if available.
set "CUSTOM_JRE_LOCATION=%HERE%runtime\"
set "JAVA_EXECUTABLE=java.exe"
IF EXIST %CUSTOM_JRE_LOCATION%bin\%JAVA_EXECUTABL... | Enable logging in installer on Windows | Enable logging in installer on Windows
| Batchfile | apache-2.0 | triceo/robozonky,triceo/robozonky,RoboZonky/robozonky,triceo/zonkybot,triceo/zonkybot,RoboZonky/robozonky |
266c5c8824085d265bad25a06ee56e18ba77dbbc | scripts/test.bat | scripts/test.bat | bash scripts/test.sh
REM store return code
set return=%errorlevel%
call scripts\kill_applications.bat > kill.log
exit /B %return%
| bash scripts/test.sh
REM store return code
set return=%errorlevel%
call scripts\kill_applications.bat > kill.log 2>&1
exit /B %return%
| Hide all kill application output | Hide all kill application output
| Batchfile | mit | spiegelm/xd-testing,spiegelm/xd-testing,spiegelm/xd-testing |
83a135996f4a159a056412bbe7f6a132baa60086 | gg.bat | gg.bat | @echo off
for /f "delims=" %%i in ('npm config get prefix') do set output=%%i
@node %output%/node_modules/gogo/gg.js %*
echo on | @echo off
for /f "delims=" %%i in ('npm config get prefix') do set output=%%i
@node "%output%/node_modules/gogo/gg.js" %*
echo on
| Allow spaces in directory paths of output dir | Fix: Allow spaces in directory paths of output dir | Batchfile | mit | he3/gogo |
e3d6994415de566b2f4b9f546112fbd367f588a6 | release-pypi-windows.cmd | release-pypi-windows.cmd | @echo off
setlocal EnableDelayedExpansion
SET VERSIONS=2.7 3.5 3.6 3.7 3.8
SET SOURCEDIR=%cd%
REM Build packages
for %%v in (%VERSIONS%) do (
SET ENV_NAME=py%%v
REM Create and activate environment
cd %ROOT_DIR%
CALL conda create -y -n py%%v python=%%v
if !ERRORLEVEL! NEQ 0 (EXIT !ERRORLEVEL!)
... | @echo off
setlocal EnableDelayedExpansion
REM Initialize conda
C:\Miniconda/condabin/conda.bat init powershell
SET VERSIONS=2.7 3.5 3.6 3.7 3.8
SET SOURCEDIR=%cd%
REM Build packages
for %%v in (%VERSIONS%) do (
SET ENV_NAME=py%%v
REM Create and activate environment
cd %ROOT_DIR%
CALL C:\Miniconda/co... | Use absolute path to conda.bat in windows image | Use absolute path to conda.bat in windows image
| Batchfile | apache-2.0 | BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC |
556b7dd5d69606897fddf540eb18b4e4fc345944 | recipes/vs2008_runtime/bld.bat | recipes/vs2008_runtime/bld.bat | powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/d/d/9/dd9a82d0-52ef-40db-8dab-795376989c03/vcredist_x86.exe', 'vcredist_x86.exe')"
if errorlevel 1 exit 1
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/2/d/6/2d61... | for %%F in ("." "bin") do (
cmake -G "%CMAKE_GENERATOR%" ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DCMAKE_INSTALL_DEBUG_LIBRARIES:BOOL="OFF" ^
-DCMAKE_INSTALL_DEBUG_LIBRARIES_ONLY:BOOL="OFF" ^
-DCMAKE_INSTALL_OPENMP_LIBRARIES:BOOL="ON" ^
-DCMAKE_INSTALL_SY... | Revert "Install Visual C++ 2008 SP1 Redistributables" | Revert "Install Visual C++ 2008 SP1 Redistributables"
This reverts commit 9c061351b85bf917c9870b5851168368a5075d6f.
| Batchfile | bsd-3-clause | barkls/staged-recipes,rvalieris/staged-recipes,glemaitre/staged-recipes,NOAA-ORR-ERD/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,jjhelmus/staged-recipes,shadowwalkersb/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,had... |
e85462a911db2a723622926872f88544a5d97fbf | recipes/qt-webengine/bld.bat | recipes/qt-webengine/bld.bat | setlocal enableextensions enabledelayedexpansion
git config --system core.longpaths true
set LIBRARY_PATHS=-I %LIBRARY_INC%
pushd %LIBRARY_INC%
for /F "usebackq delims=" %%F in (`dir /b /ad-h`) do (
set LIBRARY_PATHS=!LIBRARY_PATHS! -I %LIBRARY_INC%\%%F
)
popd
endlocal
set PATH=%cd%\jom;%PATH%
SET PATH=%cd%\gnu... | setlocal enableextensions enabledelayedexpansion
git config --system core.longpaths true
set LIBRARY_PATHS=-I %LIBRARY_INC%
pushd %LIBRARY_INC%
for /F "usebackq delims=" %%F in (`dir /b /ad-h`) do (
set LIBRARY_PATHS=!LIBRARY_PATHS! -I %LIBRARY_INC%\%%F
)
popd
endlocal
:: Chromium requires Python 2.7 to generat... | Install python 2.7 on a separate prefix on Windows | Install python 2.7 on a separate prefix on Windows
| Batchfile | bsd-3-clause | kwilcox/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/stage... |
303bfda521cc036ce32f117ed37c048a49374cdf | vendor/init.bat | vendor/init.bat | :: Init Script for cmd.exe
:: Sets some nice defaults
:: Created as part of cmder project
:: Change the prompt style
:: Mmm tasty lamb
@prompt $E[1;32;40m$P$S{git}$S$_$E[1;30;40m{lamb}$S$E[0m
:: Pick right version of clink
@if "%PROCESSOR_ARCHITECTURE%"=="x86" (
set architecture=86
) else (
set architecture=6... | :: Init Script for cmd.exe
:: Sets some nice defaults
:: Created as part of cmder project
:: Change the prompt style
:: Mmm tasty lamb
@prompt $E[1;32;40m$P$S{git}$S$_$E[1;30;40m{lamb}$S$E[0m
:: Pick right version of clink
@if "%PROCESSOR_ARCHITECTURE%"=="x86" (
set architecture=86
) else (
set architecture=6... | Use HOME if already set. | Use HOME if already set.
| Batchfile | mit | cmderdev/cmder,cmderdev/cmder |
57873face8bc364033039221ed320e1024f1d3a1 | app/pear/PHPUnit_install.cmd | app/pear/PHPUnit_install.cmd | @ECHO OFF
ECHO Press enter to install PHPUnit for PHP
PAUSE
cmd /C pear update-channels
cmd /C pear upgrade
cmd /C pear channel-discover pear.phpunit.de
cmd /C pear channel-discover pear.symfony-project.com
cmd /C pear clear-cache
cmd /C pear install --alldeps phpunit/PHPUnit
ECHO Installation complete
PAUSE | @ECHO OFF
ECHO Press enter to install PHPUnit for PHP
PAUSE
cmd /C pear update-channels
cmd /C pear upgrade
cmd /C pear channel-discover pear.phpunit.de
cmd /C pear channel-discover pear.symfony.com
cmd /C pear clear-cache
cmd /C pear install --alldeps phpunit/PHPUnit
ECHO Installation complete
PAUSE | Change PHPUnit script to use channel pear.symfony.com instead of pear.symfony-project.com | Change PHPUnit script to use channel pear.symfony.com instead of pear.symfony-project.com
| Batchfile | apache-2.0 | kingoory/fusionleaf,kingoory/fusionleaf,kingoory/fusionleaf,kingoory/fusionleaf,kingoory/fusionleaf,kingoory/fusionleaf |
7494aab0684929f50c23a1a8b0de301880eb2c50 | cmake/bld.bat | cmake/bld.bat | @echo off
copy /y bin\*.dll %PREFIX%\ > nul
copy /y bin\cmake.exe %PREFIX%\ > nul
xcopy share %PREFIX%\share /E /I > nul
| @echo off
xcopy bin %LIBRARY_BIN%\bin /E /I > nul
xcopy share %LIBRARY_BIN%\share /E /I > nul
| Put bin and share in same place | Put bin and share in same place
Fixes CMAKE_ROOT issue
| Batchfile | bsd-3-clause | menpo/conda-recipes,menpo/conda-recipes |
655f07b0466aecf272f3cfbe043793df1ceb8bb6 | scripts/git-version.bat | scripts/git-version.bat | @echo off
setlocal
set OUTFILE=%1
if [%OUTFILE%] == [] set OUTFILE=CON
(
for /F %%s in ('git describe --tags') do set TY_VERSION=%%s
if DEFINED TY_VERSION (
set TY_VERSION=%TY_VERSION:~1%
echo /*
echo * This Source Code Form is subject to the terms of the Mozilla Public
echo * License, v. 2.0. If ... | @echo off
setlocal
set OUTFILE=%1
if [%OUTFILE%] == [] set OUTFILE=CON
(
for /F %%t in ('git describe --tags') do (
set tag=%%t
goto git_version
)
) 2>NUL
goto src_version
:git_version
(
echo /*
echo * This Source Code Form is subject to the terms of the Mozilla Public
echo * Lic... | Fix git version script on Windows | Fix git version script on Windows
| Batchfile | unlicense | Koromix/tytools,Koromix/tytools,Koromix/ty,Koromix/tytools,Koromix/ty,Koromix/ty |
395bed9879520cb67f8fe52329de481f1dd2db17 | install.bat | install.bat | call npm install
@echo off
@echo if "%%~1"=="-FIXED_CTRL_C" ( > s.bat
@echo shift >> s.bat
@echo ) else ( >> s.bat
@echo call ^<NUL %%0 -FIXED_CTRL_C %%* >> s.bat
@echo goto :EOF >> s.bat
@echo ) >> s.bat
@echo cd database >> s.bat
@echo i.vbs "start /WAIT restart.bat" >> s.bat
@echo cd .. >> s.bat
@echo sta... | call npm install
@echo off
@echo if "%%~1"=="-FIXED_CTRL_C" ( > s.bat
@echo shift >> s.bat
@echo ) else ( >> s.bat
@echo call ^<NUL %%0 -FIXED_CTRL_C %%* >> s.bat
@echo goto :EOF >> s.bat
@echo ) >> s.bat
@echo cd database >> s.bat
@echo i.vbs "start /WAIT restart.bat" >> s.bat
@echo cd .. >> s.bat
@echo sta... | Call node on the folder rather than on DrathybotAlpha | Call node on the folder rather than on DrathybotAlpha
| Batchfile | mit | vaughnroyko/DrathybotAlpha,vaughnroyko/Omnibot |
a860580c7988ced200c7c30927e4aa0da9d4bf03 | pkg/windows/uninstall-and-wipe-Python.cmd | pkg/windows/uninstall-and-wipe-Python.cmd | @echo off
:: uninstall Python 2.7 64bit
MsiExec.exe /X {16E52445-1392-469F-9ADB-FC03AF00CD62} /QN
:: wipe the Python directory
:: DOS hack first create dir because Windows cannot test not existing without error message
md c:\Python27 1>nul 2>nul
rd /s /q c:\Python27 || echo Failure: c:\Python27 still exists, please... | @echo off
:: uninstall Python 2.7.12 64bit
MsiExec.exe /X {9DA28CE5-0AA5-429E-86D8-686ED898C666} /QN
:: wipe the Python directory
:: DOS hack first create dir because Windows cannot test not existing without error message
md c:\Python27 1>nul 2>nul
rd /s /q c:\Python27 || echo Failure: c:\Python27 still exists, ple... | Change GUID for python 2.7.12 | Change GUID for python 2.7.12
| Batchfile | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
7d835a43fb2e564d282877c0d7daa94d609a255d | pk2cc5x.bat | pk2cc5x.bat | : REM BAT-file name pk2cc5x.bat
: REM %1=C:\PK2proj\ path to the tool-chain
: REM %2=PIC16f690 pic device name
: REM %3=C:\PK2proj\Work\ path to work directory
: REM %4=hello_blink.c File name
: REM %5=hello_blink File name w... | : REM BAT-file name pk2cc5x.bat
: REM %1=C:\PK2proj\ path to the tool-chain
: REM %2=PIC16f690 pic device name
: REM %3=C:\PK2proj\Work\ path to work directory
: REM %4=hello_blink.c File name
: REM %5=hello_blink File name w... | Add proper error code handling | Add proper error code handling
| Batchfile | mit | willsandy/Fritzing-PK2-Cc5x,willsandy/Fritzing-PK2-Cc5x |
262e8f93f718c090c9fcfd20f9da81ff6481f601 | scripts/package-windows.bat | scripts/package-windows.bat | :: Package everything into a "Grabber.zip" file at the root of the git repository
:: Copy all required files to the release directory
bash scripts/package.sh "release"
xcopy /I /E /Y /EXCLUDE:cpex.txt "src/sites" "release/sites/"
xcopy /I /E /K /H "src/dist/windows" "release"
:: Add Qt DLL and files
%Qt5_Dir%/bin/win... | :: Package everything into a "Grabber.zip" file at the root of the git repository
:: Copy all required files to the release directory
bash scripts/package.sh "release"
xcopy /I /E /Y /EXCLUDE:cpex.txt "src/sites" "release/sites/"
xcopy /I /E /K /H "src/dist/windows" "release"
:: Add Qt DLL and files
%Qt5_Dir%/bin/win... | Remove a few unnecessary DLLs from the Windows portable version | Remove a few unnecessary DLLs from the Windows portable version
| Batchfile | apache-2.0 | Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber |
50f4157da749981f3fbde2cdb3a3fb8ad134c2b6 | 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 | somehume/namebench |
ed485b353b282d20b9837a2d245d6169afe1d1d9 | c++14/script/test.cmd | c++14/script/test.cmd | :<<"::CMDLITERAL"
@echo off
goto :CMDSCRIPT
::CMDLITERAL
#!/bin/bash
set -euo pipefail
IFS=$$'\n\t'
script_dir=$$(cd $$(dirname $$0); pwd -P)
repo_dir=$$(dirname $$script_dir)
build_dir=$$repo_dir/_build
cmake --build $$build_dir --target test
exit $$?
:CMDSCRIPT
@echo off
setlocal
call :Main "%~f0" "%~dp0" "%~dp0.... | :<<"::CMDLITERAL"
@echo off
goto :CMDSCRIPT
::CMDLITERAL
#!/bin/bash
set -euo pipefail
IFS=$$'\n\t'
script_dir=$$(cd $$(dirname $$0); pwd -P)
repo_dir=$$(dirname $$script_dir)
build_dir=$$repo_dir/_build
cmake --build $$build_dir --target test
exit $$?
:CMDSCRIPT
@echo off
setlocal
call :Main "%~f0" "%~dp0" "%~dp0.... | Use RUN_TESTS target with Visual Studio generator | Use RUN_TESTS target with Visual Studio generator
| Batchfile | mit | rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates,rcook/ptool-templates |
0f83c34094eee41e10777c942fd34064d55eb591 | win_update_deps_vs2008.bat | win_update_deps_vs2008.bat | @echo off
echo.
:: If this file fails to find git.exe add it Git install
:: directorys 'bin' folder path to your PATH env variable
:update_vs2008_dependency_submodule
echo -- Updatating git submodule path deps/vs2008
git.exe submodule init deps/vs2008
git.exe submodule init deps/vs2008
if exist "deps\vs2008\README" ... | @echo off
echo.
:: If this file fails to find git.exe add it Git install
:: directorys 'bin' folder path to your PATH env variable
:update_vs2008_dependency_submodule
echo -- Updatating git submodule path deps/vs2008
git.exe submodule init deps/vs2008
git.exe submodule update deps/vs2008
if exist "deps\vs2008\README... | Fix typo in submodle fetch. | Fix typo in submodle fetch.
| Batchfile | apache-2.0 | AlphaStaxLLC/tundra,pharos3d/tundra,BogusCurry/tundra,BogusCurry/tundra,pharos3d/tundra,jesterKing/naali,AlphaStaxLLC/tundra,pharos3d/tundra,jesterKing/naali,realXtend/tundra,antont/tundra,BogusCurry/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,pharos3d/tundra,pharos3d/tundra,realXtend/tundra,antont/tundra,antont/tundr... |
033be2b2528bd9a7a1f1d070d93e240a411c61f6 | compilers/make-tdm-gcc.sh.bat | compilers/make-tdm-gcc.sh.bat | @rem This file is part of C++-Builtem <http://github.com/ufal/cpp_builtem/>.
@rem
@rem Copyright 2014 Institute of Formal and Applied Linguistics, Faculty of
@rem Mathematics and Physics, Charles University in Prague, Czech Republic.
@rem
@rem This Source Code Form is subject to the terms of the Mozilla Public
@rem Lic... | @rem This file is part of C++-Builtem <http://github.com/ufal/cpp_builtem/>.
@rem
@rem Copyright 2014 Institute of Formal and Applied Linguistics, Faculty of
@rem Mathematics and Physics, Charles University in Prague, Czech Republic.
@rem
@rem This Source Code Form is subject to the terms of the Mozilla Public
@rem Lic... | Use tdm-gcc symlink instead of tdm-gcc-4.9.2. | Use tdm-gcc symlink instead of tdm-gcc-4.9.2.
| Batchfile | mpl-2.0 | ufal/cpp_builtem,ufal/cpp_builtem,ufal/cpp_builtem,ufal/cpp_builtem |
7399a5501177a715f8a1fcbb633c903c73b02730 | bin/panda.bat | bin/panda.bat | @rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl6 "%~dp0\%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl6 "%~dp0\%0" %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_faile... | @rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl6 "%~dp0\%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl6 "%~dp0\%~n0" %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_fai... | Make .bat file work with powershell as well as cmd | Make .bat file work with powershell as well as cmd
| Batchfile | mit | stmuk/panda,cygx/panda,laben/panda,tadzik/panda,raydiak/panda,timo/panda,stmuk/panda,nbrown/panda,perlpilot/panda,masak/panda,skaji/panda,raydiak/panda,dwarring/panda,hoelzro/panda,shoichikaji/panda,tadzik/panda,shoichikaji/panda,nbrown/panda,will-crawford/panda,laben/panda,dwarring/panda,sjn/panda,sjn/panda,niner/pand... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.