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 |
|---|---|---|---|---|---|---|---|---|---|
22882b2915ef4e49a07d2d5884c202772302edc6 | deploy.cmd | deploy.cmd | :: Symbolically link to all of the dot files in this directory from the
:: home directory.
@echo off
net file >nul 2> nul && goto :Elevated
echo error: Administrator rights are required to make symbolic links on Windows.
exit /b 1
:Elevated
if not defined HOME (
set HOME=%USERPROFILE%
)
for %%f in (%~dp0.\.*) ... | :: Symbolically link to all of the dot files in this directory from the
:: home directory.
@echo off
net file >nul 2> nul && goto :Elevated
echo error: Administrator rights are required to make symbolic links on Windows.
exit /b 1
:Elevated
if not defined HOME (
set HOME=%USERPROFILE%
)
setx HOME %HOME%
for %%... | Make HOME environment var permanent on Windows | Make HOME environment var permanent on Windows
| Batchfile | mit | nguerrera/.dot |
cc657805b7ae63ad57c9820310e2cd178ec82d65 | build-release-package.cmd | build-release-package.cmd | set app_title=WhackEd4
set app_description=A Windows Dehacked editor.
set app_name=WhackEd4
set app_name_lower=whacked4
set app_version=1.2.1
set app_version_value=1.2.1
set app_version_title=1.2.1
set build_path=".\build\exe.win32-2.7"
set python_interpreter="c:\python27\python.exe"
set setup_compiler="C:\Program ... | set app_title=WhackEd4
set app_description=A Windows Dehacked editor.
set app_name=WhackEd4
set app_name_lower=whacked4
set app_version=1.2.1
set app_version_value=1.2.1
set app_version_title=1.2.1
set build_path=".\build\exe.win32-2.7"
set python_interpreter="c:\python27\python.exe"
set setup_compiler="C:\Program ... | Reduce installer and package size a little bit by excluding some unneeded wxWidgets files. | Reduce installer and package size a little bit by excluding some unneeded wxWidgets files.
| Batchfile | bsd-2-clause | GitExl/WhackEd4,GitExl/WhackEd4 |
a36faf89e35c3ad67bfa04934be29464df4d4cc7 | csharp/Unity/win.bat | csharp/Unity/win.bat | "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" ..\Yoga\Yoga.vcxproj /p:configuration=Release /property:Platform=x64
xcopy "..\Yoga\x64\Release\yoga.dll" %~dp0 /s /d /y
| "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" ..\Yoga\Yoga.vcxproj /p:configuration=Release /property:Platform=x64
xcopy "..\Yoga\bin\x64\Release\yoga.dll" %~dp0 /s /d /y
| Fix dll path in Unity build script | Fix dll path in Unity build script
Summary: sync with vcproj
Reviewed By: emilsjolander
Differential Revision: D4384510
fbshipit-source-id: 964c5b84c063a5241b3aab0f276b2b5a080677aa
| Batchfile | mit | facebook/yoga,facebook/css-layout,facebook/yoga,facebook/css-layout,yihuang/css-layout,facebook/css-layout,facebook/yoga,facebook/yoga,facebook/yoga,yihuang/css-layout,facebook/yoga,rmarinho/yoga,rmarinho/yoga,yihuang/css-layout,facebook/yoga,rmarinho/yoga,rmarinho/yoga,yihuang/css-layout,rmarinho/yoga,rmarinho/yoga,fa... |
0e5972991de60a8e6a940c4bd71ab4bd153d3c41 | runbot.bat | runbot.bat | @ECHO off
CHCP 65001 > NUL
CD /d "%~dp0"
SETLOCAL ENABLEEXTENSIONS
SET KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
SET VALUE_NAME=HideFileExt
FOR /F "usebackq tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
SET ValueName=%%A
SET ValueType=%%B
SET Va... | @ECHO off
CHCP 65001 > NUL
CD /d "%~dp0"
SETLOCAL ENABLEEXTENSIONS
SET KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
SET VALUE_NAME=HideFileExt
FOR /F "usebackq tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
SET ValueName=%%A
SET ValueType=%%B
SET Va... | Use sysroot var in py.exe invoke | Use sysroot var in py.exe invoke
Stupid path issues
| Batchfile | mit | reddit-diabetes/musicbot-cloud,DiscordMusicBot/MusicBot,Crims101/SymmetraBot,Crims101/SymmetraBot,reddit-diabetes/musicbot-cloud |
6a35a24ebf398f19d375026572d65dc06c6d65d2 | deploy.cmd | deploy.cmd | :: hard link to all of the dot files in this directory from the
:: home directory.
@echo off
setx HOME %HOME%
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink /h %HOME%\%%~nxf %%f
)
| :: hard link to all of the dot files in this directory from the
:: home directory.
@echo off
if not defined HOME (
set HOME=%USERPROFILE%
)
setx HOME %HOME%
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink /h %HOME%\%%~nxf %%f
)
| Set HOME to USERPROFILE by default | Set HOME to USERPROFILE by default
| Batchfile | mit | nguerrera/.dot |
65697dfe085349669cc3436f27a2c38c95da93c7 | batch/clear_mpc-hc_favorites.bat | batch/clear_mpc-hc_favorites.bat | REG DELETE "HKEY_CURRENT_USER\Software\MPC-HC\MPC-HC\Favorites\Files" /va /f | @echo off
CLS
ECHO.
ECHO =============================
ECHO Running Admin shell
ECHO =============================
:init
setlocal DisableDelayedExpansion
set cmdInvoke=1
set winSysFolder=System32
set "batchPath=%~0"
for %%k in (%0) do set batchName=%%~nk
set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.v... | Support case where settings are not stored in the Registry but on disk | Support case where settings are not stored in the Registry but on disk
| Batchfile | mit | teddy-gustiaux/scripts,teddy-gustiaux/scripts |
8310c9b9acbf772f4ad2b23d38c445057cf767b4 | bin/iex.bat | bin/iex.bat | @if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
call "%~dp0\elixir.bat" +iex --erl "-user Elixir.IEx.CLI" --no-halt %ELIXIR_IEX_FLAGS% %*
| @if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
@if defined IEX_WITH_WERL (@set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=)
call "%~dp0\elixir.bat" +iex --erl "-user Elixir.IEx.CLI" --no-halt %__ELIXIR_IEX_FLAGS% %*
@set __ELIXIR_IEX_FLAGS=
| Use IEX_WITH_WERL environment variable to enable --werl by default. | Use IEX_WITH_WERL environment variable to enable --werl by default.
| Batchfile | apache-2.0 | gfvcastro/elixir,kimshrier/elixir,antipax/elixir,kimshrier/elixir,kelvinst/elixir,pedrosnk/elixir,lexmag/elixir,pedrosnk/elixir,elixir-lang/elixir,gfvcastro/elixir,antipax/elixir,michalmuskala/elixir,ggcampinho/elixir,beedub/elixir,lexmag/elixir,joshprice/elixir,beedub/elixir,ggcampinho/elixir,kelvinst/elixir |
9d28be612f7246c5d706188092284fd5df9861eb | recipes/EQcorrscan/bld.bat | recipes/EQcorrscan/bld.bat | @echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
xcopy %LIBRARY_LIB%\fftw3.lib %LIBRARY_LIB%\libfftw3-3.lib
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt | @echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
xcopy /i %LIBRARY_LIB%\fftw3.lib %LIBRARY_LIB%\libfftw3-3.lib
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt | Copy fftw library to correct file-name | Copy fftw library to correct file-name
| Batchfile | bsd-3-clause | dschreij/staged-recipes,chohner/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,isuruf/staged-reci... |
768a02acad043a9077b9ca977c7f16f6d6ad9e77 | scripts/sonarqube-scan.cmd | scripts/sonarqube-scan.cmd | mvn clean jacoco:prepare-agent verify jacoco:report -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| mvn clean jacoco:prepare-agent verify jacoco:report sonar:sonar -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| Add missing `sonar:sonar` for windows script | Add missing `sonar:sonar` for windows script | Batchfile | apache-2.0 | excella-core/excella-reports |
29153ee6b14436e2ca67388bd8ad71260fc907d3 | exec_wrappers/templates/conda/run-in.bat | exec_wrappers/templates/conda/run-in.bat | @echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=__CONDA_ENV_DIR__"
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
... | @echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=__CONDA_ENV_DIR__"
@set "PATH=%CONDA_DEFAULT_ENV%;%CONDA_DEFAULT_ENV%\Scripts;%CONDA_DEFAULT_ENV%\Library\bin;%PATH%"
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pu... | Fix conda wrapper for Windows | Fix conda wrapper for Windows
The conda paths were being wrongly set with " | Batchfile | mit | gqmelo/exec-wrappers,gqmelo/exec-wrappers |
6252d1c42418d93ed6fa3047a7062233900f0b30 | scripts/igv.bat | scripts/igv.bat | ::Get the current batch file's short path
for %%x in (%0) do set BatchPath=%%~dpsx
for %%x in (%BatchPath%) do set BatchPath=%%~dpsx
java -Xmx1200m -Dproduction=true -Djava.net.preferIPv4Stack=true -Dsun.java2d.noddraw=true -jar %BatchPath%\igv.jar %*
| ::Get the current batch file's short path
for %%x in (%0) do set BatchPath=%%~dpsx
for %%x in (%BatchPath%) do set BatchPath=%%~dpsx
java -Xmx4000m -Dproduction=true -Djava.net.preferIPv4Stack=true -Dsun.java2d.noddraw=true -jar %BatchPath%\igv.jar %*
| Update memory settings for window .bat file (from 1200 mb to 4000 mb) | Update memory settings for window .bat file (from 1200 mb to 4000 mb)
| Batchfile | mit | igvteam/igv,igvteam/igv,igvteam/igv,igvteam/igv,amwenger/igv,amwenger/igv,amwenger/igv,amwenger/igv,amwenger/igv,igvteam/igv |
d04a7741f38e2499b72e7fc5644955ab75ebe932 | ci/cli/tasks/gats-windows.bat | ci/cli/tasks/gats-windows.bat | SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\code.cloudfoundry.org\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%\... | SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\code.cloudfoundry.org\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%\... | Use Windows environment variable substitution | Use Windows environment variable substitution
[#131571315]
| Batchfile | apache-2.0 | fujitsu-cf/cli,fujitsu-cf/cli,fujitsu-cf/cli,simonleung8/cli,simonleung8/cli,simonleung8/cli |
4be336c011440f3adadb5f001f6e2c23e3e870a6 | perfload-demo-installer/src/main/scripts/DemoInstaller.cmd | perfload-demo-installer/src/main/scripts/DemoInstaller.cmd | @REM
@REM Copyright (c) 2013 mgm technology partners GmbH
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless... | @REM
@REM Copyright (c) 2013 mgm technology partners GmbH
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless... | Use "call" for running Gradle | Use "call" for running Gradle | Batchfile | apache-2.0 | mgm-tp/perfload-demo,mgm-tp/perfload-demo |
e0c34d2caca4a4ade7197ecb37ae8a19c3c8aea0 | rossum.cmd | rossum.cmd | @echo off
python "%~dp0\rossum.py" %*
| @echo off
REM
REM Copyright (c) 2016, G.A. vd. Hoorn
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by ... | Add missing license to wrapper batch. | Add missing license to wrapper batch.
| Batchfile | apache-2.0 | gavanderhoorn/rossum |
77339d697edb8afcd6408e2933b0fda1f2bc4cdc | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tools-... | @echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu_s20
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-to... | Update azure-cli's kudu specific branch. | Update azure-cli's kudu specific branch.
| Batchfile | apache-2.0 | kali786516/kudu,bbauya/kudu,chrisrpatterson/kudu,badescuga/kudu,puneet-gupta/kudu,WeAreMammoth/kudu-obsolete,uQr/kudu,kenegozi/kudu,duncansmart/kudu,shanselman/kudu,juoni/kudu,juoni/kudu,kenegozi/kudu,uQr/kudu,sitereactor/kudu,shrimpy/kudu,badescuga/kudu,EricSten-MSFT/kudu,duncansmart/kudu,dev-enthusiast/kudu,barnyp/ku... |
d40dea3b0ba063c1a891f9d2b8171cc7794384f4 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update azure-cli
) else (
cmd /c npm install azure-cli
)
IF %ERRORLEVEL% NEQ 0 goto error
if exist %1\node_modules\kudusync\bin\kudusync (
cmd /c npm update kudusync
) else (
cmd /c npm install kudusync
)
IF %ERRORLEVEL% NEQ 0 got... | @echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
)
IF %ERRORLEVEL% NEQ 0 goto error
if exist %1\node_modules\kudusync\bin... | Change script to install azure-cli from a private branch, so we have the latest fixes (not dependant on azure-cli schedule for them). | Change script to install azure-cli from a private branch, so we have the latest fixes (not dependant on azure-cli schedule for them).
| Batchfile | apache-2.0 | juvchan/kudu,mauricionr/kudu,MavenRain/kudu,juoni/kudu,shanselman/kudu,dev-enthusiast/kudu,projectkudu/kudu,badescuga/kudu,kenegozi/kudu,badescuga/kudu,puneet-gupta/kudu,shibayan/kudu,shibayan/kudu,projectkudu/kudu,kali786516/kudu,YOTOV-LIMITED/kudu,projectkudu/kudu,shanselman/kudu,mauricionr/kudu,bbauya/kudu,barnyp/ku... |
69ed26e959c5770080b5e0e44a1fd57d7edf54fb | startcmd.bat | startcmd.bat | @echo off
REM This file is part of the DITA Open Toolkit project hosted on
REM Sourceforge.net. See the accompanying license.txt file for
REM applicable licenses.
REM (c) Copyright IBM Corp. 2006 All Rights Reserved.
REM Get the absolute path of DITAOT's home directory
set DITA_DIR=%~dp0
REM Set environment var... | @echo off
REM This file is part of the DITA Open Toolkit project hosted on
REM Sourceforge.net. See the accompanying license.txt file for
REM applicable licenses.
REM (c) Copyright IBM Corp. 2006 All Rights Reserved.
REM Get the absolute path of DITAOT's home directory
set DITA_DIR=%~dp0
REM Set environment var... | Remove duplicate dost.jar from CLASSPATH - ID: 3499953 | Remove duplicate dost.jar from CLASSPATH - ID: 3499953 | Batchfile | apache-2.0 | queshaw/dita-ot,drmacro/dita-ot,queshaw/dita-ot,robander/dita-ot,zanyants/dita-ot,infotexture/dita-ot,drmacro/dita-ot,doctales/dita-ot,dita-ot/dita-ot,zanyants/dita-ot,dita-ot/dita-ot,zanyants/dita-ot,shaneataylor/dita-ot,robander/dita-ot,doctales/dita-ot,infotexture/dita-ot,infotexture/dita-ot,doctales/dita-ot,Hasimir... |
bd67239955bad98ba01b6d01086ebc3c4d9d47fa | cl.bat | cl.bat | @C:\Python26\python.exe %~dp0\clcache.py %*
| @echo off
if exist C:\Python26\python.exe (
C:\Python26\python.exe %~dp0\clcache.py %*
) else (
python.exe %~dp0\clcache.py %*
)
| Use "python.exe" in PATH too, instead of only relying on fixed location. | Use "python.exe" in PATH too, instead of only relying on fixed location.
| Batchfile | bsd-3-clause | webmaster128/clcache,webmaster128/clcache,webmaster128/clcache |
95c74fcffee53be4b33908a40e6a894bf5d7932d | bin/create-db.bat | bin/create-db.bat | @echo off
echo [INFO] create db.
echo [INFO] please confirm db encoding utf-8.
echo [INFO] please confirm has modified es/web/pom.xml--^>profile--^>development---^>connection.admin.url/connection.username/password
cd %~dp0
cd ../web
call mvn db:create -e -X
cd ../bin
pause | @echo off
echo [INFO] create db.
echo [INFO] please confirm db encoding utf-8.
echo [INFO] please confirm has modified es/web/pom.xml--^>profile--^>development---^>connection.admin.url/connection.username/password
cd %~dp0
cd ../web
call mvn db:create
cd ../bin
pause | Revert "print detailed debug info when creating DB" | Revert "print detailed debug info when creating DB"
This reverts commit 976cb30fbeae2de2a39cdd0ff8ff73f152dd7f15.
| Batchfile | apache-2.0 | xiuxin/Huntering,xiuxin/Huntering,xiuxin/Huntering,xiuxin/Huntering |
f0ef4ea18afc4b4516d8e59bdc36271a930b69fa | ci/jenkins.cmd | ci/jenkins.cmd | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET PYTHON_HOME=C:\Python36
SET DOTNET_HOME=C:\Program Files\dotnet
SET JAVA_HOME=C:\opt\oracle-jdk-8
SET GIT_HOME=C:\Program Files\Git
SET MAVEN... | @ECHO OFF
SET BASEDIR=%~dp0..
SET USERINI=%BASEDIR%\user.ini
FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do (
set CF_USER=%%a
set CF_PASS=%%b
)
SET PYTHON_HOME=C:\Python36
SET DOTNET_HOME=C:\Program Files\dotnet
SET JAVA_HOME=C:\opt\oracle-jdk-8
SET GIT_HOME=C:\Program Files\Git
SET MAVEN... | Disable Python virtualenv on Jenkins | Disable Python virtualenv on Jenkins
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
9b59b7f3f3ce30f5fd2d4a652f0cfc5311c3553a | common/platform-dotnet/push-packages.cmd | common/platform-dotnet/push-packages.cmd | if "%NUGET_API_KEY%" == "" goto NO_KEY
if "%1" == "" goto MISSING_INPUT_FOLDER
REM dotnet nuget push %1\*.nupkg --api-key %NUGET_API_KEY%
for %%f in (%1\*.nupkg) do dotnet nuget push %%f --api-key %NUGET_API_KEY% --source https://nuget.org/
GOTO END
:NO_KEY
ECHO Couldn't find 'NUGET_API_KEY' environment variable.
E... | @ECHO OFF
if "%NUGET_API_KEY%" == "" goto NO_KEY
if "%1" == "" goto MISSING_INPUT_FOLDER
REM dotnet nuget push %1\*.nupkg --api-key %NUGET_API_KEY%
for %%f in (%1\*.nupkg) do dotnet nuget push %%f --api-key %NUGET_API_KEY% --source https://nuget.org/
GOTO END
:NO_KEY
ECHO Couldn't find 'NUGET_API_KEY' environment ... | Remove echo so the API key doesn't appear on screen. | Remove echo so the API key doesn't appear on screen.
| Batchfile | mit | SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk |
c7e314fff5d0f0f5df9e04aec7f0b50a51e88663 | tests/test-recipes/metadata/source_git/bld.bat | tests/test-recipes/metadata/source_git/bld.bat | if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1',... | if not exist .git exit 1
git describe --tags --dirty
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__versio... | Use proper flags to git describe command in test | Use proper flags to git describe command in test
| Batchfile | bsd-3-clause | mwcraig/conda-build,frol/conda-build,mwcraig/conda-build,dan-blanchard/conda-build,dan-blanchard/conda-build,ilastik/conda-build,frol/conda-build,ilastik/conda-build,mwcraig/conda-build,frol/conda-build,sandhujasmine/conda-build,ilastik/conda-build,sandhujasmine/conda-build,rmcgibbo/conda-build,dan-blanchard/conda-buil... |
e8dd22c1366892dc8426809e35d6f0e522cc74e0 | Make.bat | Make.bat | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL Make.bat lit
ECHO "Building luvit"
SET LUVI_APP=app/
SET LUVI_TARGET=luvit.exe
lit\luvi-binaries\Windows\luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
GOTO :end
:lit
ECHO "Building lit"
git clone --recursive --depth 10 https://github.com/luvit/lit... | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL Make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/raw/0.9.8/web-install.p... | Move luvit windows make to new style | Move luvit windows make to new style
| Batchfile | apache-2.0 | bsn069/luvit,rjeli/luvit,kaustavha/luvit,GabrielNicolasAvellaneda/luvit-upstream,kaustavha/luvit,rjeli/luvit,zhaozg/luvit,DBarney/luvit,zhaozg/luvit,kaustavha/luvit,GabrielNicolasAvellaneda/luvit-upstream,bsn069/luvit,DBarney/luvit,DBarney/luvit,DBarney/luvit,luvit/luvit,rjeli/luvit,luvit/luvit,GabrielNicolasAvellaneda... |
0d7b3a08b3d7beaca9a205bc4d24e06869e8db39 | tests/test_veriblelint/lint/verilog_lint.cmd | tests/test_veriblelint/lint/verilog_lint.cmd | -lint_fatal -parse_fatal sv_file.sv
-lint_fatal -parse_fatal vlog_file.v
-lint_fatal -parse_fatal vlog05_file.v
| --lint_fatal --parse_fatal sv_file.sv
--lint_fatal --parse_fatal vlog_file.v
--lint_fatal --parse_fatal vlog05_file.v
| Fix golden reference in verible lint test | Fix golden reference in verible lint test
| Batchfile | bsd-2-clause | lowRISC/edalize,SymbiFlow/edalize,SymbiFlow/edalize,lowRISC/edalize |
a3d185228bcd6da2a26faa369f4511bb163a287c | build.cmd | build.cmd | @echo off
rem Optional batch file to quickly build with some defaults.
rem Alternatively, this batch file can be invoked passing msbuild parameters, like: build.cmd /v:detailed /t:Rebuild
cd %~dp0
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest ... | @echo off
rem Optional batch file to quickly build with some defaults.
rem Alternatively, this batch file can be invoked passing msbuild parameters, like: build.cmd /v:detailed /t:Rebuild
cd %~dp0
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest ... | Switch to using the latest v3.3 nuget.exe | Switch to using the latest v3.3 nuget.exe
| Batchfile | mit | MobileEssentials/Merq,kzu/Merq,adalon/Merq |
0a8de10ca69d4f6e8f25bd49372eb68c11ba56ae | fop.bat | fop.bat | @ECHO OFF
rem %~dp0 is the expanded pathname of the current script under NT
set LOCAL_FOP_HOME=
if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME=%~dp0
set LIBDIR=%LOCAL_FOP_HOME%lib
set LOCALCLASSPATH=%LOCAL_FOP_HOME%build\fop.jar
set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xml-apis.jar
set LOCALCLASSPATH=%LOCALCLASSPATH%... | @ECHO OFF
rem %~dp0 is the expanded pathname of the current script under NT
set LOCAL_FOP_HOME=
if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME=%~dp0
set LIBDIR=%LOCAL_FOP_HOME%lib
set LOCALCLASSPATH=%LOCAL_FOP_HOME%build\fop.jar
set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xml-apis.jar
set LOCALCLASSPATH=%LOCALCLASSPATH%... | Adjust to version change of Commons IO | Adjust to version change of Commons IO
git-svn-id: 102839466c3b40dd9c7e25c0a1a6d26afc40150a@196594 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | chunlinyao/fop,chunlinyao/fop,apache/fop,apache/fop,apache/fop,apache/fop,apache/fop,chunlinyao/fop,chunlinyao/fop,chunlinyao/fop |
570c98fbfc3c88ad6e4f3cab5ead156a70b7656d | tools/run.bat | tools/run.bat | thrift-0.9.1.exe -gen java -strict -out src\main\java jdbc.thrift
pause | thrift-0.9.1.exe -gen java -strict -out ..\src\main\java jdbc.thrift
pause
| Fix path in thrift compiler tool | Fix path in thrift compiler tool
| Batchfile | apache-2.0 | damiencarol/thrift-jdbc-server |
b151ed2db2e0efc856fde871c6ecad3a0e7fea1e | appveyor-install.cmd | appveyor-install.cmd | "%sdkver%" -q -version:v7.0
call setenv /x64
rem install python packages
pip install --cache-dir c:/temp nose
pip install --cache-dir c:/temp Sphinx
pip install --cache-dir c:/temp coverage
pip install --cache-dir c:/temp numpy
pip install --cache-dir c:/temp pyside
pip install --cache-dir c:/temp git+http://github.co... | "%sdkver%" -q -version:v7.0
call setenv /x64
rem install python packages
pip install --cache-dir c:/temp nose
pip install --cache-dir c:/temp Sphinx
pip install --cache-dir c:/temp coverage
pip install --cache-dir c:/temp numpy
pip install --cache-dir c:/temp pyside
pip install --cache-dir c:/temp psutil
pip install -... | Add missing psutil dependency for appveyor | Add missing psutil dependency for appveyor
| Batchfile | bsd-3-clause | liulion/mayavi,dmsurti/mayavi,liulion/mayavi,alexandreleroux/mayavi,dmsurti/mayavi,alexandreleroux/mayavi |
531ad18c2eacfadb891ae0d418390682941af55b | build.bat | build.bat | call .\packages\psake.4.2.0.1\tools\psake.cmd build.ps1 %*
pause | set EnableNuGetPackageRestore=true
call .\packages\psake.4.2.0.1\tools\psake.cmd build.ps1 %*
pause | Build script and nuget now automatically grabs missing dependencies | Build script and nuget now automatically grabs missing dependencies
| Batchfile | mit | nelsonsar/raygun4net,ddunkin/raygun4net,tdiehl/raygun4net,nelsonsar/raygun4net,articulate/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,ddunkin/raygun4net,articulate/raygun4net,tdiehl/raygun4net |
e0481ed9c18da46e9e55c1728fe6123893dfc733 | build.cmd | build.cmd | @echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS140COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015... | @echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS150COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015... | Build with VS 15 dev tools | Build with VS 15 dev tools
| Batchfile | mit | nkolev92/sdk,nkolev92/sdk |
2b3d805c0214f32ec17db0c06a7f76d15f820af7 | Tools/AppVeyor/Test.cmd | Tools/AppVeyor/Test.cmd | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
set vstest="%VSINSTALLDIR%\Common7\IDE\Extensions\TestPlatform\vstest.console.exe"
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests from: %%~dpnxa... | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
set vstest="%VSINSTALLDIR%\Common7\IDE\Extensions\TestPlatform\vstest.console.exe"
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests from: %%~dpnxa... | Disable logger because it does not work with this preview version of vstest.console.exe | Disable logger because it does not work with this preview version of vstest.console.exe
| Batchfile | apache-2.0 | dlemstra/Magick.NET,dlemstra/Magick.NET |
3d7c309d1ececa6e05856daf84831df73af01fd8 | Make.cmd | Make.cmd | # © 2013 the Mid Authors under the MIT license. See AUTHORS for the list of authors.
T := $(TARG)
TARG := cmd/$(T)/$(T)
ALL += $(TARG)
OFILES := $(OFILES:%=cmd/$(T)/%)
ALLO += $(OFILES)
LIBHFILES := $(LIBDEPS:%=include/%.h)
LIBDEPS := $(shell echo $(LIBDEPS) | awk '{ for(i = 1; i <= NF; i++) printf("lib/%s/%s.a ... | # © 2013 the Mid Authors under the MIT license. See AUTHORS for the list of authors.
T := $(TARG)
TARG := cmd/$(T)/$(T)
ALL += $(TARG)
OFILES := $(OFILES:%=cmd/$(T)/%)
ALLO += $(OFILES)
LIBHFILES := $(LIBDEPS:%=include/%.h)
LIBDEPS := $(shell echo $(LIBDEPS) | awk '{ for(i = 1; i <= NF; i++) printf("lib/%s/%s.a ... | Remove that -o; everybody knows what's going on | Remove that -o; everybody knows what's going on
| Batchfile | mit | velour/mid,velour/mid,velour/mid |
d0ad6b7d8283df1b0126832b5f58a5d56545c9a1 | file-utility-code/SoundMetrics.Aris.BeamWidths/build-beam-width-files.cmd | file-utility-code/SoundMetrics.Aris.BeamWidths/build-beam-width-files.cmd | SET SOL_DIR=%1
SET ALT_SOL_DIR=..\
IF "%SOL_DIR%" == "" SET SOL_DIR=%ALT_SOL_DIR%
IF "%SOL_DIR%" == "*Undefined*" SET SOL_DIR=%ALT_SOL_DIR%
echo SOL_DIR is %SOL_DIR%
SET PROJ_DIR=%2
SET ALT_PROJ_DIR=%SOL_DIR%\SoundMetrics.Aris.BeamWidths\
IF "%PROJ_DIR%" == "" SET PROJ_DIR=%ALT_PROJ_DIR%
IF "%PROJ_DIR%" == "*Undefine... | SET SOL_DIR=%1
SET ALT_SOL_DIR=..\
IF "%SOL_DIR%" == "" SET SOL_DIR=%ALT_SOL_DIR%
IF "%SOL_DIR%" == "*Undefined*" SET SOL_DIR=%ALT_SOL_DIR%
echo SOL_DIR is %SOL_DIR%
SET PROJ_DIR=%2
SET ALT_PROJ_DIR=%SOL_DIR%\SoundMetrics.Aris.BeamWidths\
IF "%PROJ_DIR%" == "" SET PROJ_DIR=%ALT_PROJ_DIR%
IF "%PROJ_DIR%" == "*Undefined... | Convert script from Unicode to ANSI | Convert script from Unicode to ANSI
| Batchfile | mit | SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk |
b20fd103c8e442b73c2a47fa1bfef8168b890748 | recipes/tcplotter/bld.bat | recipes/tcplotter/bld.bat | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" ..
if errorlevel 1 exit 1
cmake --build -DCMAKE_C... | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 ..
if errorlevel 1 exit 1... | Fix typo in Windows build | Fix typo in Windows build
| Batchfile | bsd-3-clause | ocefpaf/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes |
92710b3d0e0850d45243a482f9a8a814f52784bb | run-nofib.bat | run-nofib.bat | @ECHO OFF
if not "%1" == "" goto continue
for %%i in (imaginary) do for %%j in (yca\%%i\*.yca) do call %0 %%j
goto end
:continue
echo Processing %1
firstify %1 -himlv > %1.txt 2>&1
:end
| @ECHO OFF
if "%1" == "goto" shift && goto continue
REM If they enter nothing, do all the benchmarks
set def=imaginary,spectral,real
if not "%1" == "" set def=%1
for %%i in (%def%) do for %%j in (yca\%%i\*.yca) do call %0 goto %%j
goto end
:continue
echo Processing %1
firstify %1 -himlv > %1.txt 2>&1
:en... | Add support for specifying what benchmark suite you want to run | Add support for specifying what benchmark suite you want to run | Batchfile | bsd-3-clause | ndmitchell/firstify |
1fe246278c96b0a9745e999f4b2c75e11cec4fd6 | Algorithm.Python/build.bat | Algorithm.Python/build.bat | REM QuantConnect Lean Engine -- Python Build Script.
del Python.Runtime.dll
REM Python Compile the Algorithm with all the files in current directory
nPython -m compileall -lq .
REM Copy to the Lean Algorithm Project
copy *.pyc ..\..\..\Launcher\bin\Debug >NUL
copy *.pyc ..\..\..\Launcher\bin\Release >NUL
copy *.pyc ... | REM QuantConnect Lean Engine -- Python Build Script.
del Python.Runtime.dll
REM Python Compile the Algorithm with all the files in current directory
nPython -m compileall -lq .
REM Copy to the Lean Algorithm Project
copy *.pyc ..\..\..\Launcher\bin\Debug >NUL
copy *.pyc ..\..\..\Launcher\bin\Release >NUL
copy *.pyc .... | Remove the byte order mark | Remove the byte order mark
Used Notepad++ to chang the file encoding from UTF-8-BOM to UTF-8 (i.e.
removed the byte order mark) which seems to be confusing the Windows
shell. Fixes issue mentioned in #915
| Batchfile | apache-2.0 | AnshulYADAV007/Lean,young-zhang/Lean,andrewhart098/Lean,AlexCatarino/Lean,tomhunter-gh/Lean,redmeros/Lean,jameschch/Lean,AlexCatarino/Lean,jameschch/Lean,StefanoRaggi/Lean,Mendelone/forex_trading,AlexCatarino/Lean,StefanoRaggi/Lean,tomhunter-gh/Lean,QuantConnect/Lean,AnshulYADAV007/Lean,QuantConnect/Lean,JKarathiya/Lea... |
4c74b21e6f5f4203d87a06db985ce85030019f9a | WinPreBuild.bat | WinPreBuild.bat | @echo off
Rem Generate visual studio project files
Rem This file is a part of llbc library
echo Visual Studio solution and project files generate tool.
echo For now supported Visual Studio versions:
echo vs2005
echo vs2008
echo vs2010
echo vs2012
echo vs2013
echo vs2015
set /p choose=Please input:
... | @echo off
Rem Generate visual studio project files
Rem This file is a part of llbc library
echo Visual Studio solution and project files generate tool.
echo For now supported Visual Studio versions:
echo vs2005
echo vs2008
echo vs2010
echo vs2012
echo vs2013
echo vs2015
set /p choose=Please input:
... | Delete pause command after generated visual studio solution | Delete pause command after generated visual studio solution
| Batchfile | mit | lailongwei/llbc,lailongwei/llbc,lailongwei/llbc,lailongwei/llbc,lailongwei/llbc |
faa95649eda7971d5305240791cfee178a556571 | ServerSetupScripts/Windows/Chocolatey/Vagrant.bat | ServerSetupScripts/Windows/Chocolatey/Vagrant.bat | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco install vagrant chefdk virtualbox visualstudiocode 7zip go... | @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco install vagrant chefdk virtualbox visualstudiocode 7zip go... | Install seems to stop after the kitch gem install. Putting at end | Install seems to stop after the kitch gem install. Putting at end | Batchfile | unlicense | iaingblack/Automation,iaingblack/Automation |
738227496d6dd78b541ac00afe5a45fbeb9fa45e | bin/release.bat | bin/release.bat | @echo off
if exist %1\web.config (
set message=Warning: We detected a Web.config in your app. This probably means that you want to use the hwc-buildpack. If you really want to use the binary-buildpack, you must specify a start command.
) else (
set message=Error: no start command specified during staging or la... | @echo off
if exist %1\web.config (
set message=Warning: We detected a Web.config in your app. This probably means that you want to use the HWC Buildpack (run cf buildpacks for exact buildpack name). If you really want to use the Binary Buildpack, you must specify a start command.
) else (
set message=Error: no... | Update warning message with clear buildpack names | Update warning message with clear buildpack names
[#162625493]
| Batchfile | apache-2.0 | cloudfoundry/binary-buildpack,rakutentech/binary-buildpack,cloudfoundry/binary-buildpack,rakutentech/binary-buildpack,rakutentech/binary-buildpack,cloudfoundry/binary-buildpack |
aac89e98153175ead096c808e5c083f8001cb9a8 | presetup-win.cmd | presetup-win.cmd | REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco install virtualbox -y
REM Killing the default adapter and D... | REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco install virtualbox -y
REM Killing the default adapter and ... | Fix path to VirtualBox in PATH on Windows | Fix path to VirtualBox in PATH on Windows
| Batchfile | mit | blinkreaction/boot2docker-vagrant |
092194484e2e9d7768d62da3a4e5f14317a4fe97 | make.bat | make.bat | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Release\luvi.exe .
GOTO :end
:test
S... | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Re... | Enable zlib in the Windows build | Enable zlib in the Windows build
| Batchfile | apache-2.0 | virgo-agent-toolkit/luvi,luvit/luvi,joerg-krause/luvi,brimworks/luvi,zhaozg/luvi,virgo-agent-toolkit/luvi,zhaozg/luvi,kidaa/luvi,joerg-krause/luvi,brimworks/luvi,luvit/luvi |
28637ef1885715915346604328c5c6d1332baf29 | recipes/r-nlmixr/bld.bat | recipes/r-nlmixr/bld.bat | "%R%" CMD INSTALL --build .
IF %ERRORLEVEL% NEQ 0 exit 1
| %SRC_DIR%>set "CXX_STD=CXX14"
%SRC_DIR%>set "CXX14STD=-std=c++1y"
"%R%" CMD INSTALL --build .
IF %ERRORLEVEL% NEQ 0 exit 1
| Test set CXX14 for win build | Test set CXX14 for win build | Batchfile | bsd-3-clause | hadim/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,SylvainCorlay/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-r... |
1ee8ddec9da31c01284fba2d434a316543e994f2 | dev.jeka.core/src/main/java/META-INF/bin/jeka.bat | dev.jeka.core/src/main/java/META-INF/bin/jeka.bat | @echo off
@rem Change here the default JVM options
@rem SET JEKA_OPTS == ""
@rem set terminal encoding to utf-8
chcp 65001 > nul
if not "%JEKA_JDK%" == "" set "JAVA_HOME=%JEKA_JDK%"
if "%JAVA_HOME%" == "" set "JAVA_CMD=java"
if not "%JAVA_HOME%" == "" set "JAVA_CMD=%JAVA_HOME%\bin\java"
if exist %cd%\jeka\boot set ... | @echo off
@rem Change here the default JVM options
@rem SET JEKA_OPTS == ""
@rem set terminal encoding to utf-8
chcp 65001 > nul
if not "%JEKA_JDK%" == "" set "JAVA_HOME=%JEKA_JDK%"
if "%JAVA_HOME%" == "" set "JAVA_CMD=java"
if not "%JAVA_HOME%" == "" set "JAVA_CMD=%JAVA_HOME%\bin\java"
if exist %cd%\jeka\boot set ... | Check the Jeka jar is actually present at JEKA_HOME | Check the Jeka jar is actually present at JEKA_HOME
Fixes any potential problems from using the current directory where the distrib.zip might not have been extracted | Batchfile | apache-2.0 | jerkar/jerkar,jerkar/jerkar,jerkar/jerkar |
4232fad550da4c478285b45a6e9bd0ef2b971446 | config.bat | config.bat | @echo off
rem config.bat: master configuration file for the batch files
rem Running this command directly has no effect,
rem but you can tweak the settings to your liking.
rem Set the amount of RAM available to the command line tools.
set JFLAGS=-Xmx512m
rem Set the NO_UPDATE_CHECK flag to skip the update check.
re... | @echo off
rem config.bat: master configuration file for the batch files
rem Running this command directly has no effect,
rem but you can tweak the settings to your liking.
rem Set the amount of RAM available to the command line tools.
set JFLAGS=-Xmx512m
rem Set the NO_UPDATE_CHECK flag to skip the update check.
re... | Add missing set commands to commented-out code | Add missing set commands to commented-out code
| Batchfile | bsd-2-clause | scifio/scifio-cli |
3d5db7e5d5c550f298a267336c384f2d3cdc85cb | mcedit-debug.bat | mcedit-debug.bat | @echo off
SET STATUS=,
:START:
python.exe mcedit.py
ECHO.
ECHO ^|-----------------^|
ECHO ^|Mcedit Terminated^|
ECHO ^|-----------------^|
ECHO.
SET /P K=Press R or Enter to restart MCEdit%STATUS% any other key to exit:
IF /I %K%==R GOTO CLEAR
GOTO EXIT
:CLEAR:
CLS
SET STATUS= again,
GOTO START
:EXIT: | @echo off
SET STATUS=,
:START:
python.exe mcedit.py
ECHO.
ECHO ^|-----------------^|
ECHO ^|Mcedit Terminated^|
ECHO ^|-----------------^|
ECHO.
SET K==R
SET /P K=Press R or Enter to restart MCEdit%STATUS% any other key to exit:
IF /I %K%==R GOTO CLEAR
GOTO EXIT
:CLEAR:
CLS
SET STATUS= again,
GOTO START
:EXIT: | Improve bat not accepting enter first loop | Improve bat not accepting enter first loop
| Batchfile | isc | skinny121/MCEdit-TallWorlds,skinny121/MCEdit-TallWorlds,skinny121/MCEdit-Unified,OniOniOn-/MCEdit-Unified,Neui/MCEdit-Unified,skinny121/MCEdit-Unified,OniOniOn-/MCEdit-Unified,fhfuih/MCEdit-Unified,DragonQuiz/MCEdit-Unified,DragonQuiz/MCEdit-Unified,Neui/MCEdit-Unified,Khroki/MCEdit-Unified,fhfuih/MCEdit-Unified,Khroki... |
d5ed8650fc3d05144c177a58300c30701cf06d0a | tests/test-recipes/metadata/source_git/bld.bat | tests/test-recipes/metadata/source_git/bld.bat | if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__"
if error... | if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1',... | Add git status debug output to test | Add git status debug output to test
| Batchfile | bsd-3-clause | frol/conda-build,ilastik/conda-build,ilastik/conda-build,mwcraig/conda-build,rmcgibbo/conda-build,sandhujasmine/conda-build,dan-blanchard/conda-build,mwcraig/conda-build,frol/conda-build,sandhujasmine/conda-build,frol/conda-build,ilastik/conda-build,mwcraig/conda-build,dan-blanchard/conda-build,dan-blanchard/conda-buil... |
eb12280ec38fda6570b317dd07d6cfed66c58f2f | vshax.bat | vshax.bat | powershell -Command "(gc .build/projects/vs2015/unit_test.vcxproj) -replace '<ExceptionHandling>false', '<ExceptionHandling>Sync' | Out-File -encoding UTF8 .build/projects/vs2015/unit_test.vcxproj"
powershell -Command "(gc .build/projects/vs2015/unit_test.vcxproj) -replace '<RuntimeTypeInfo>false', '<RuntimeTypeInfo>tr... | powershell -Command "(gc .build/projects/%1/unit_test.vcxproj) -replace '<ExceptionHandling>false', '<ExceptionHandling>Sync' | Out-File -encoding UTF8 .build/projects/%1/unit_test.vcxproj"
powershell -Command "(gc .build/projects/%1/unit_test.vcxproj) -replace '<RuntimeTypeInfo>false', '<RuntimeTypeInfo>true' | Out-Fi... | Add toolset as commandline parameter | Add toolset as commandline parameter
| Batchfile | mit | siquel/kulma,siquel/kulma |
9db44a8dadbfc7c47996ecabe9d58cad74c9f6b0 | packages/MSDOS/djmake.bat | packages/MSDOS/djmake.bat | @echo off
if exist src\fscanner.l goto dir_okay
echo !!!! Must run this batch file from the main source directory!
exit
:dir_okay
echo ---- Start by patching the ylwrap script to avoid problems
echo with "ln -s":
patch -p1 -i contrib/msdos/ylwrap.pat
echo ---- Now configure and make it.
echo -- ... | @echo off
if exist src\fscanner.l goto dir_okay
echo !!!! Must run this batch file from the main source directory!
exit
:dir_okay
echo ---- Start by patching the ylwrap script to avoid problems
echo with "ln -s":
patch -p1 -i packages/MSDOS/ylwrap.pat
echo ---- Now configure and make it.
echo --... | Fix pathname of patch file | Fix pathname of patch file
| Batchfile | bsd-3-clause | lboulard/cscope,lboulard/cscope,lboulard/cscope |
46fac6e0971c9d110fc51441c7476ae1b1bec532 | contrib/easywinbuilder/6_gather_dlls.bat | contrib/easywinbuilder/6_gather_dlls.bat | @call set_vars.bat
copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\
copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy %QTPAT... | @call set_vars.bat
copy %QTDIR%\5.8\mingw53_32\Qt5Charts.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Core.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Gui.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Network.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Widgets.dll %ROOTPATH%\rel... | Add other dlls to copy for release. Fix libstc++-6.dll not being found as requires quotations | Add other dlls to copy for release. Fix libstc++-6.dll not being found as requires quotations
| Batchfile | mit | caraka/gridcoinresearch,gridcoin/Gridcoin-Research,tomasbrod/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,theMarix/Gridcoin-Research,Git-Jiro/Gridcoin-Research,caraka/gridcoinresearch,Git-Jiro/Gridcoin-Research,TheCharlatan/Gridcoin-Research,TheCharlatan/Gridcoin-Research,tomasbrod/Gr... |
607f79a4218d9dd247096c98312dc4fd9be4c07a | src/Q42.RijksmuseumApi/NuGet/CreateNuGetPackage.cmd | src/Q42.RijksmuseumApi/NuGet/CreateNuGetPackage.cmd | @echo off
..\..\.nuget\NuGet.exe pack ..\Q42.RijksmuseumApi.nuspec -Prop Configuration=Release | @echo off
..\..\.nuget\NuGet.exe pack ..\Q42.RijksmuseumApi.csproj -Prop Configuration=Release | Create NuGet package based on csproj instead of nuspec | Create NuGet package based on csproj instead of nuspec
| Batchfile | mit | Q42/Q42.RijksmuseumApi |
6ff68633ed730dbd1500f06639dd093513b4278e | makezip.bat | makezip.bat | @echo off
rem Repack the installer contents into a ZIP archive.
mkdir .\unpacked
msiexec /a CormanLispInstaller.msi /qn TARGETDIR="%~dp0unpacked"
del CormanLispBinaries.zip
powershell Compress-Archive -Path \"%~dp0unpacked\Corman Lisp\" -DestinationPath \"%~dp0CormanLispBinaries.zip\"
rd /s /q .\unpacked
| @echo off
rem Repack the installer contents into a ZIP archive.
mkdir .\unpacked
msiexec /a CormanLispInstaller.msi /qn TARGETDIR="%~dp0unpacked"
move ".\unpacked\System\*" ".\unpacked\Corman Lisp\"
del CormanLispBinaries.zip
rem rem Visual C++ Runtime DLL files and Universal CRT files Local Deployment
rem copy "%VS1... | Copy the necessary Visual C++ Runtime files into the ZIP archive. | Copy the necessary Visual C++ Runtime files into the ZIP archive.
| Batchfile | mit | sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp |
9d5c2e0c884d9f233f28adec20b4a966efaa27b4 | perl/settings.cmd | perl/settings.cmd | @echo off
set drive=%~dp0
set drivep=%drive%
set PERLVER=5.20.3.1
set PERLDIR=%drivep%\%ARCH%\perl
set RELVERSION=3.3.0_01
if #%drive:~-1%# == #\# set drivep=%drive:~0,-1%
set PATH=%PERLDIR%\perl\site\bin;%PERLDIR%\perl\bin;%PERLDIR%\c\bin;%PATH%
| @echo off
set drive=%~dp0
set drivep=%drive%
set PERLVER=5.20.3.1
set PERLDIR=%drivep%\%ARCH%\perl
set RELVERSION=3.3.0_02
if #%drive:~-1%# == #\# set drivep=%drive:~0,-1%
set PATH=%PERLDIR%\perl\site\bin;%PERLDIR%\perl\bin;%PERLDIR%\c\bin;%PATH%
| Update perl module version to be built | Update perl module version to be built
| Batchfile | mit | mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer |
8d34443fc69c1d91af888c41a841aa921352f7ac | make.bat | make.bat | @ECHO off
@SET LIT_VERSION=1.1.4
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/... | @ECHO off
@SET LIT_VERSION=1.1.8
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/... | Update lit version to fix windows build | Update lit version to fix windows build | Batchfile | apache-2.0 | bsn069/luvit,zhaozg/luvit,luvit/luvit,kaustavha/luvit,bsn069/luvit,kaustavha/luvit,luvit/luvit,zhaozg/luvit,bsn069/luvit,kaustavha/luvit |
708d678a223eb89eb3801cafcc49e0d578ef6eef | run_windows.bat | run_windows.bat | @echo off
chcp 65001 > NUL
set PIPENV_VENV_IN_PROJECT=1
python --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Cannot find Python executable, make sure it is installed and added to your PATH.
pause
exit /B 0
)
python -c "import pipenv" > NUL 2>&1
if %ERRORLEVEL% neq 0 (
python -m pip install --user... | @echo off
SETLOCAL EnableDelayedExpansion
chcp 65001 > NUL
set PIPENV_VENV_IN_PROJECT=1
python --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Cannot find Python executable, make sure it is installed and added to your PATH.
pause
exit /B 0
)
python -c "import pipenv" > NUL 2>&1
if %ERRORLEVEL% neq 0 (
... | Fix pipenv addition to PATH when PATH contains parenthsis. | Fix pipenv addition to PATH when PATH contains parenthsis.
| Batchfile | mit | PapyrusThePlant/MusicPanda,PapyrusThePlant/MusicPanda |
16a7e9e6eba613e5bda47538fb52fee1cf9b2a14 | popcorn.cmd | popcorn.cmd | @echo off
setlocal
| @echo off
setlocal
set "output=nul"
set "times=1"
:help
:parseArgs
if "%~1" == "" goto main
if /i "%~1" == "-?" goto help
if /i "%~1" == "-h" goto help
if /i "%~1" == "--help" goto help
if /i "%~1" == "-t" (
set "times=%~2"
shift
)
if /i "%~1" == "--times" (
set "times=%~2"
shift
)
if /i "%~1" =... | Add the logic for the Windows script | Add the logic for the Windows script | Batchfile | mit | jamesqo/popcorn |
72d280b61b99be28abaeb520fc473bdc77452081 | build-msvc-release.bat | build-msvc-release.bat | scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=1 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=1 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buil... | scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=0 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=0 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buil... | Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build. | Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
| Batchfile | lgpl-2.1 | max-ilse/csound,audiokit/csound,max-ilse/csound,mcanthony/csound,max-ilse/csound,iver56/csound,audiokit/csound,max-ilse/csound,nikhilsinghmus/csound,Angeldude/csound,iver56/csound,iver56/csound,audiokit/csound,iver56/csound,audiokit/csound,max-ilse/csound,max-ilse/csound,iver56/csound,Angeldude/csound,nikhilsinghmus/cs... |
9b62acd12fa259e67fe7dea65bcc4f56a54557b2 | build_win64.bat | build_win64.bat | cd conda-skeletons
conda install conda-build anaconda-client
conda config --add channels matsci
conda config --set anaconda_upload yes
FOR %%A IN (ase latexcodec pybtex spglib pyhull pymatgen pymatgen-db seekpath) DO conda build --user matsci %%A
cd ..
| cd conda-skeletons
conda install conda-build anaconda-client
conda config --add channels matsci
conda config --set anaconda_upload yes
FOR %%A IN (ase latexcodec pybtex spglib pyhull pymatgen pymatgen-db seekpath) DO conda build --skip-existing --user matsci %%A
cd ..
| Add skip existing to appveyor. | Add skip existing to appveyor.
| Batchfile | bsd-3-clause | materialsvirtuallab/materials.sh,materialsvirtuallab/materials.sh |
8a8a809760d8b5118f7d77d256c8a19f6073bb41 | Tools/signAll.bat | Tools/signAll.bat | @echo off
call "%~dp0\SetVsEnv.bat" x86
for /r "%~dp0\..\" %%i in (*.sys) do "signtool.exe" sign /f "%~dp0\VirtIOTestCert.pfx" "%%i"
for /r "%~dp0\..\" %%i in (*.cat) do "signtool.exe" sign /f "%~dp0\VirtIOTestCert.pfx" "%%i"
| @echo off
call "%~dp0\SetVsEnv.bat" x86
for /r "%~dp0\..\" %%i in (*.sys) do "signtool.exe" sign /fd SHA256 /f "%~dp0\VirtIOTestCert.pfx" "%%i"
for /r "%~dp0\..\" %%i in (*.cat) do "signtool.exe" sign /fd SHA256 /f "%~dp0\VirtIOTestCert.pfx" "%%i"
| Update command line for new version of signtool | singAll: Update command line for new version of signtool
Signed-off-by: Kostiantyn Kostiuk <88b496cab076c092c564e40d69a70d175fb00bcc@daynix.com>
| Batchfile | bsd-3-clause | daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-... |
d2f0ab2529594c1b248f10c5a1871611616bfcf5 | slave/run_slave.bat | slave/run_slave.bat | @echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
echo Did you read the instructions carefully??
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
:: Running it once will make sure svn and python were downloaded.
... | @echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
echo Did you read the instructions carefully??
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
cd /d %~dp0
:: Running it once will make sure svn and python were ... | Fix auto-sync on start for Windows. | Fix auto-sync on start for Windows.
Otherwise it is run from the script's shortcut directory. A good example is when
a shortcut is used in the Startup Menu. So "gclient sync" fails.
R=nsylvain@chromium.org
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10783034
git-svn-id: 239fca9b83025a0b6f823aeeca0... | Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
41c31ca694b54d6cf6302613d2f9a597f6357e33 | src/scripts/ci/setup_appveyor.bat | src/scripts/ci/setup_appveyor.bat |
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFil... |
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFil... | Use jom via botan-ci-tools repo | Use jom via botan-ci-tools repo
download.qt.io seems to be down ...
| Batchfile | bsd-2-clause | Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,webmaster128/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,randombit/botan,webmaster128/botan,webmaster128/botan,webmaster128/botan,randomb... |
1207080a013ebe653cbeb599253b99b83f58396b | recipes/openjdk/scripts/activate.bat | recipes/openjdk/scripts/activate.bat | export set "JAVA_HOME_CONDA_BACKUP=%JAVA_HOME%"
export set "JAVA_HOME=%CONDA_PREFIX%\Library"
| set "JAVA_HOME_CONDA_BACKUP=%JAVA_HOME%"
set "JAVA_HOME=%CONDA_PREFIX%\Library"
| Remove export from windows script. | Remove export from windows script.
| Batchfile | bsd-3-clause | ocefpaf/staged-recipes,koverholt/staged-recipes,jerowe/staged-recipes,dfroger/staged-recipes,Cashalow/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,hbredin/staged-recipes,cpaulik/staged-recipes,pstjohn/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,glemaitre/staged-... |
05d09c45065ac2da2b81e217b7553bff8953cc46 | Springboard365.Tools.CommandLine.Core/NuGet/NuGetPush.bat | Springboard365.Tools.CommandLine.Core/NuGet/NuGetPush.bat | NuGet.exe pack ../Springboard365.Tools.CommandLine.Core.csproj -Build -symbols
pause | NuGet.exe pack ../Springboard365.Tools.CommandLine.Core.csproj -Build -symbols
NuGet.exe push *.nupkg
pause | Add NuGet push to NuGet build script. | Add NuGet push to NuGet build script.
| Batchfile | apache-2.0 | SpringBoard365/Springboard365.Tools.CommandLine.Core |
3a56b326fdd88e78b9c725fa19dc19d471757682 | start_blockserver_cmd.bat | start_blockserver_cmd.bat | REM @echo off
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
set MYDIRGATE=%MYDIRBLOCK%..\..\..\gateway\master
if exist "%ICPSETTINGSDIR%/gwblock.pvlist" (
set GWBL... | REM @echo off
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
set MYDIRGATE=%MYDIRBLOCK%..\..\..\gateway
if exist "%ICPSETTINGSDIR%/gwblock.pvlist" (
set GWBLOCK_PVL... | Fix path to dummy pvlist file | Fix path to dummy pvlist file
| Batchfile | bsd-3-clause | ISISComputingGroup/EPICS-inst_servers,ISISComputingGroup/EPICS-inst_servers |
20aa25776952aafb643044d0d53c50a10c873bfb | Scripts/SetDirectories.bat | Scripts/SetDirectories.bat | ::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
::SET KSPPATH... | ::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
::SET KSPPATH... | Fix example paths in batch file. | Fix example paths in batch file.
| Batchfile | mit | gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer |
896dd038b6e1cc74310dfd7869a4f052ae6d4e85 | src/SharpLang.RuntimeInline/BuildRuntime.bat | src/SharpLang.RuntimeInline/BuildRuntime.bat | call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
..\..\deps\llvm\build\RelWithDebInfo\bin\clang Runtime.c -emit-llvm -c -o Runtime.bc -O3
..\..\deps\llvm\build\RelWithDebInfo\bin\llc -march=cpp Runtime.bc -cppgen=functions -o RuntimeInline.inc | call "%VS120COMNTOOLS%..\..\VC\vcvarsall.bat" x86
..\..\deps\llvm\build\RelWithDebInfo\bin\clang Runtime.c -emit-llvm -c -o Runtime.bc -O3
..\..\deps\llvm\build\RelWithDebInfo\bin\llc -march=cpp Runtime.bc -cppgen=functions -o RuntimeInline.inc | Use %VS120COMNTOOLS% to find vcvarsall.bat when building inline runtime | Use %VS120COMNTOOLS% to find vcvarsall.bat when building inline runtime
| Batchfile | bsd-2-clause | xen2/SharpLang,xen2/SharpLang,xen2/SharpLang,xen2/SharpLang,xen2/SharpLang |
08f5a1f1bca75ba02ef9b3cdd0ce45dbd93a637a | build-win.bat | build-win.bat | @echo off
:: Author: Mark Gottscho <mgottscho@ucla.edu>
echo Building X-Mem for Windows x86-64...
:: Do a little trick to ensure build datetime are correct
:: DO NOT remove this code -- otherwise X-Mem will fail to build.
set build_datetime=%DATE% %TIME%
echo #ifndef __BUILD_DATETIME_H>src\include\build_datetime.h
e... | @echo off
:: Author: Mark Gottscho <mgottscho@ucla.edu>
set ARCH=%1
echo Building X-Mem for Windows on %ARCH%...
:: Do a little trick to ensure build datetime are correct
:: DO NOT remove this code -- otherwise X-Mem will fail to build.
set build_datetime=%DATE% %TIME%
echo #ifndef __BUILD_DATETIME_H>src\include\bui... | Fix to windows build script | Fix to windows build script
| Batchfile | mit | Microsoft/X-Mem,nanocad-lab/X-Mem,mgottscho/X-Mem,nanocad-lab/X-Mem,nanocad-lab/X-Mem,Microsoft/X-Mem,Microsoft/X-Mem,mgottscho/X-Mem,mgottscho/X-Mem,nanocad-lab/X-Mem,mgottscho/X-Mem,Microsoft/X-Mem |
a1b175360318b5d84b13d08082e9684d873d7a08 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/3362e1a069445bc83767cd41bb1160d239cfac7b
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/cf97bbbb26b0442de8cafa99275e3ea8fedf8849
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update to use latest KuduScript | Update to use latest KuduScript
| Batchfile | apache-2.0 | uQr/kudu,chrisrpatterson/kudu,puneet-gupta/kudu,uQr/kudu,sitereactor/kudu,sitereactor/kudu,projectkudu/kudu,chrisrpatterson/kudu,shibayan/kudu,sitereactor/kudu,puneet-gupta/kudu,barnyp/kudu,sitereactor/kudu,EricSten-MSFT/kudu,badescuga/kudu,kali786516/kudu,juvchan/kudu,uQr/kudu,badescuga/kudu,puneet-gupta/kudu,uQr/kudu... |
334e73cf57439ed2a2e390beb37836e061a73261 | bin/web-service.bat | bin/web-service.bat | @echo off
setlocal
set WEB_PROCESS_TITLE=Skywalking-Web
set WEB_BASE_PATH=%~dp0%..
set WEB_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%WEB_BASE_PATH%\config;
SET CLASSPATH=%WEB_BASE_PATH%\libs\*;%CLASSPATH%
if ""%JAVA_HOME%"" == """" (
set _EXECJAVA=java
) else (
set _EXECJAVA="%JAVA_HOME%"/bin/java
)
st... | @echo off
setlocal
set WEB_PROCESS_TITLE=Skywalking-Web
set WEB_BASE_PATH=%~dp0%..
set WEB_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%WEB_BASE_PATH%\config;
SET CLASSPATH=%WEB_BASE_PATH%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:"=%"\bin\java
)
if not defined JAVA_HOME (
echo "JA... | Fix windows script start failure | Fix windows script start failure
| Batchfile | apache-2.0 | ascrutae/sky-walking-ui,ascrutae/sky-walking-ui |
0cb93634fa7f2b36e81d4d438ec19bd2a1277946 | ci/jenkins_run_tests.bat | ci/jenkins_run_tests.bat | set PATH=C:\Ruby192\bin;%PATH%
REM Chef 10 contains the client in the chef/ sub-directory
cd chef
ruby -v
call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock && call bundle install --binstubs --path vendor/bundle )
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f... | set PATH=C:\Ruby192\bin;%PATH%
REM Chef 10 contains the client in the chef/ sub-directory
cd chef
ruby -v
call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock && call bundle install --binstubs --path vendor/bundle )
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f... | Add stress tests to jenkins on windows | Add stress tests to jenkins on windows
| Batchfile | apache-2.0 | sempervictus/chef,Ppjet6/chef,AndyBoucher/Chef-Testing,andrewpsp/chef,custora/chef,skmichaelson/chef,danielsdeleo/seth,skmichaelson/chef,andrewpsp/chef,natewalck/chef,docwhat/chef,swalberg/chef,permyakovsv/chef,cmluciano/chef,nathwill/chef,gene1wood/chef,nathwill/chef,patcon/chef,nguyen-tien-mulodo/chef,josb/chef,mio-g... |
3d626dd868ecbf39fd1dc133ca0fc9d38c1811df | scripts/code.bat | scripts/code.bat | @echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Get electron, compile, built-in extensions
if "%VSCODE_SKIP_PRELAUNCH%"=="" node build/lib/preLaunch.js
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESH... | @echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Get electron, compile, built-in extensions
if "%VSCODE_SKIP_PRELAUNCH%"=="" node build/lib/preLaunch.js
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESH... | Use "%~1" instead of "%1" in bat argument parsing. | Use "%~1" instead of "%1" in bat argument parsing.
| Batchfile | mit | microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Microsoft/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,Krzyszt... |
4e48028d62f5e9c6cf40160117bb719f9a6ae3e3 | src/RNGLR.EBNFParser.SimpleTest/gen_EBNF.cmd | src/RNGLR.EBNFParser.SimpleTest/gen_EBNF.cmd | del log.txt
for %%i in (CalcEBNF, ComplexRightNull, EpsilonCycle, ManyAndOne, ManyAndOpt, RightNull, SimpleEpsilon, SimpleOpt, SimpleRightNull, SimpleSome, StackingConflict, TwoEpsilonsMiddle) do (
echo . >> log.txt
echo %%i >> log.txt
..\..\Bin\Release\v40\YC.YaccConstructor.exe -i %%i.yrd -c ExpandMeta ... | del log.txt
for %%i in (CalcEBNF, ComplexRightNull, EpsilonCycle, ManyAndOne, ManyAndOpt, RightNull, SimpleEpsilon, SimpleOpt, SimpleRightNull, SimpleSome, StackingConflict, TwoEpsilonsMiddle) do (
echo . >> log.txt
echo %%i >> log.txt
..\..\Bin\Release\v40\YC.YaccConstructor.exe -i %%i.yrd -c ExpandMeta ... | Add unnecessary files to .gitignore | Add unnecessary files to .gitignore
| Batchfile | apache-2.0 | YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor |
9c8772320c19d713917cd9c66292339bb4f4a8ac | run_tests.bat | run_tests.bat | @echo off
rmdir bin
mkdir bin
haxe -cp src -neko bin/HxpectTests.n -main "hxpect.tests.Main"
cd bin
neko HxpectTests.n
| @echo off
rmdir bin
mkdir bin
haxe -cp src -neko bin/HxpectTests.n -main "hxpect.tests.Main"
cd bin
set errorlevel=
neko HxpectTests.n
exit /b %errorlevel%
| Fix for test runner to capture a failing exit code. | Fix for test runner to capture a failing exit code.
| Batchfile | unlicense | Markavian/hxpect |
97c977b9f16a9291128cddf391c931408b9f4d36 | make.bat | make.bat | SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
del /F /Q windows_app_lifecycle.tgz
rmdir /S /Q packages
nuget restore || exit /b 1
MSBuild WindowsCircus.sln /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Builder.Tests\bin\Release\BuilderTests.dll || exit /b 1
packages\nspec.0.9.6... | SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
:: enable some features
SET dism=%WINDIR%\SysNative\dism.exe
%dism% /online /Enable-Feature /FeatureName:IIS-WebServer /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:IIS-WebSockets /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:Application-Server-WebServ... | Add back installation of windows features to build script | Add back installation of windows features to build script
| Batchfile | apache-2.0 | cloudfoundry-incubator/windows_app_lifecycle,cloudfoundry/windows_app_lifecycle,stefanschneider/windows_app_lifecycle |
4aef0caab757a8738159b0b51ea20ae515832272 | Kudu.Services.Web/updateNodeModules.cmd | Kudu.Services.Web/updateNodeModules.cmd | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b3494d6fc023f34cc0dded832110b608635cca40
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b1c12f132cf357238672dd57cd7213b1f282123a
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | Update kuduscript for function changes | Update kuduscript for function changes
| Batchfile | apache-2.0 | shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,shibayan/kudu |
89c352dfac9b7b7bfa5befe40880b57653f3eda1 | build_release.bat | build_release.bat | # Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\std... | REM Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\s... | Fix build/test script on Windows | Fix build/test script on Windows
| Batchfile | lgpl-2.1 | roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,MariaDB/mariadb-connector-j,roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,roidelapluie/mariadb-connector-j,roidelapluie/mariadb-connector-j,MariaDB/mariadb-connector-j |
a25e9fe83ff6bfc57b4bcb247618f8d50c4de046 | setup.bat | setup.bat | @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.... | @ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.... | Put quotes around PYTHONPATH to handle the case where there's a space in the name | Put quotes around PYTHONPATH to handle the case where there's a space in
the name
| Batchfile | agpl-3.0 | makerbot/conveyor,makerbot/conveyor,makerbot/conveyor,makerbot/conveyor |
6955978a6246243106588b817c271060ed12d3b6 | build-local.bat | build-local.bat | @ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
::SET PATH=C:\m... | @ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
SET PATH=C:\mb\... | Remove commented out line in windows build script. History is what git is for. | Remove commented out line in windows build script. History is what git is for.
| Batchfile | bsd-2-clause | Project-OSRM/osrm-backend,neilbu/osrm-backend,deniskoronchik/osrm-backend,duizendnegen/osrm-backend,beemogmbh/osrm-backend,hydrays/osrm-backend,raymond0/osrm-backend,bjtaylor1/osrm-backend,arnekaiser/osrm-backend,raymond0/osrm-backend,KnockSoftware/osrm-backend,yuryleb/osrm-backend,oxidase/osrm-backend,neilbu/osrm-back... |
f44c077ea4a1783bfd7b704f22653639f5f73bab | mb-gui.bat | mb-gui.bat | @echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
se... | @echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
se... | Set Default GUI to Pyblish QML | Set Default GUI to Pyblish QML
| Batchfile | mit | mottosso/mindbender-setup,mindbender-studio/setup,mindbender-studio/setup,mindbender-studio/setup,mottosso/mindbender-setup,mottosso/mindbender-setup |
6e671266b095a3e1f3819cfc8da7dcaa8ea1d23e | make-windows-executables.bat | make-windows-executables.bat | rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
| rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
del __init__.pyc | Update Windows build script to remove __init__.pyc. | Update Windows build script to remove __init__.pyc.
| Batchfile | mit | goelakash/retriever,davharris/retriever,bendmorris/retriever,henrykironde/deletedret,davharris/retriever,goelakash/retriever,davharris/retriever,embaldridge/retriever,embaldridge/retriever,bendmorris/retriever,bendmorris/retriever,henrykironde/deletedret,embaldridge/retriever |
c6ba542aa01fcec159c084117305fb8715bc558f | test.cmd | test.cmd | @echo off
setlocal
cd "%~dp0"
chcp 1252 > nul
if exist tools\NUnit.Runners goto :test
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
md tools
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory tools || exit /b 1
move .\tools\NUnit.Runners.2.6.4 .\tools\NUnit.Runners
if no... | @echo off
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
setlocal
set NUNIT_CONSOLE_PATH=tools\NUnit.Runners\tools\nunit-console.exe
if exist %NUNIT_CONSOLE_PATH% goto :test-all
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDir... | Test script review for redundancies | Test script review for redundancies
| Batchfile | apache-2.0 | morelinq/MoreLINQ,morelinq/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ |
c6a2f12a42d8b47718d159d849286d1511e9cd14 | host/scripts/install_cygwin.bat | host/scripts/install_cygwin.bat | @echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <cy@rossignols.me>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync:... | @echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <cy@rossignols.me>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync:... | Add git to default cygwin installation | Add git to default cygwin installation
Signed-off-by: Cy Rossignol <31ace4ad1831aae866cd7951a842ca3e38f21981@rossignols.me>
| Batchfile | mit | cyrossignol/kickboxer |
51cdce93652a1d0d6c99ca06009d8bc57e2c6c36 | bootstrap.cmd | bootstrap.cmd | @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.1 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.2 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed | Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed
| Batchfile | bsd-2-clause | loresoft/msbuildtasks |
2a6a668fd09472b07df7b6c8bad8a8e1880e2afe | scripts/windows/startNode.bat | scripts/windows/startNode.bat | @echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
goto end
:doit
SETLOCAL
c... | @echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
echo Node started with a ran... | Change the script to be able to launch it when clicking on it | Change the script to be able to launch it when clicking on it
git-svn-id: 9146c88ff6d39b48099bf954d15d68f687b3fa69@74 28e8926c-6b08-0410-baaa-805c5e19b8d6
| Batchfile | agpl-3.0 | ow2-proactive/scheduling,fviale/scheduling,laurianed/scheduling,fviale/scheduling,tobwiens/scheduling,lpellegr/scheduling,paraita/scheduling,yinan-liu/scheduling,zeineb/scheduling,lpellegr/scheduling,laurianed/scheduling,fviale/scheduling,paraita/scheduling,ow2-proactive/scheduling,ow2-proactive/scheduling,lpellegr/sch... |
50e39dc1b8573b6655197e1edc393044251eedaa | difido-server/src/main/etc/start.bat | difido-server/src/main/etc/start.bat | @echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xm... | @echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xm... | Support for plugins in Windows | Support for plugins in Windows
| Batchfile | apache-2.0 | Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports |
8ec822497f1e8a969cd854363d03f7575c7a2b95 | make_w64.cmd | make_w64.cmd | @ECHO OFF
TITLE Windows Driver Kit 7.1.0
REM set target=i386
set target=amd64
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\%target%
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /N... | @ECHO OFF
TITLE Windows Driver Kit 7.1.0
set target=amd64
REM set target=i386
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\amd64
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /... | Make it easier to test 32-bit builds. | Make it easier to test 32-bit builds.
| Batchfile | cc0-1.0 | cxd4/n64-keyboard,cxd4/n64-keyboard,cxd4/n64-keyboard |
efc34b5f3b38d70fc64e6595c95a74a919a40938 | dev/install.cmd | dev/install.cmd | @echo off
echo Update environment...
echo Update Ruby...
call gem update --system
echo Update Ruby Sass...
call gem update sass
echo Update Bourbon...
call gem update bourbon
call gem update neat
call gem update bitters
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
cal... | @echo off
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
call npm install --save-dev
pause | Remove Ruby update from unstall | Remove Ruby update from unstall
| Batchfile | mit | ideus-team/html-framework,ideus-team/html-framework |
6c5a246218049df2f6442c2e175b03e49d2fa2cd | Dependencies/setupHDF5.bat | Dependencies/setupHDF5.bat | @ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin peter.nordin@liu.se
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building 64-bit version of FMILibrary
echo ======================
set OLDPATH=%PATH%
... | @ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin peter.nordin@liu.se
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building the HDF5 library and tools
echo ======================
set OLDPATH=%PATH%
ca... | Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build | Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build
| Batchfile | apache-2.0 | Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan |
43571eaad2a9fe88ccf4d5f8b689f7dbeca2516d | ci/msvc_install.bat | ci/msvc_install.bat | mkdir build
#mkdir 3rdparty\build
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T
Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T
#Robocopy "./tools/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% LSS 8 g... | mkdir build
REM mkdir 3rdparty\build
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T
Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T
REM Robocopy "./tools/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% L... | Correct mistake in windows bat file | Correct mistake in windows bat file
| Batchfile | apache-2.0 | dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new |
2438540028dcc1c3125c1cabe1d74c9b79914027 | src/packall.cmd | src/packall.cmd | @ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A"
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~dp0..\bin\Debug\AnyCPU\%~n1" | @ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A" "%~dp0.."
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~f2\bin\Debug\AnyCPU\%~n1" | Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .." | Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .."
| Batchfile | mit | CommonBuildToolset/CBT.Modules,jeffkl/CBT.Modules |
59cc9b35715fe629e81b1303dd15e6f2b2b82ccc | conda.recipe/bld.bat | conda.recipe/bld.bat | cd %RECIPE_DIR%\..
%PYTHON% make_version.py
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
| cd %RECIPE_DIR%\..
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
| Remove make_version from windows' recipe | Remove make_version from windows' recipe
| Batchfile | bsd-3-clause | Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client |
c46fb024a64fc83b953f97a34bb7dd9f0b7921e4 | make.bat | make.bat | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Re... | @ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:build
cm... | Use 64-bit build for windows (assuming community or pro edition) | Use 64-bit build for windows (assuming community or pro edition)
| Batchfile | apache-2.0 | zhaozg/luvi,virgo-agent-toolkit/luvi,joerg-krause/luvi,joerg-krause/luvi,virgo-agent-toolkit/luvi,brimworks/luvi,zhaozg/luvi,kidaa/luvi,luvit/luvi,luvit/luvi,brimworks/luvi |
1549a69eb21a04b21dab1eed8d26a68c18c8014f | src/build.bat | src/build.bat | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:L... | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:L... | Update bat file by new NuGet version | Update bat file by new NuGet version
| Batchfile | mit | paymentwall/paymentwall-dotnet |
ae9309087c54c666f5e6158e06a2b809f69a3948 | Android/CopyData.bat | Android/CopyData.bat | md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
| md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
rd /S /Q assets\CoreData\Shaders\HLSL
| Delete HLSL directory when copying Android assets. | Delete HLSL directory when copying Android assets.
| Batchfile | mit | abdllhbyrktr/Urho3D,cosmy1/Urho3D,rokups/Urho3D,victorholt/Urho3D,urho3d/Urho3D,victorholt/Urho3D,c4augustus/Urho3D,codemon66/Urho3D,luveti/Urho3D,eugeneko/Urho3D,SuperWangKai/Urho3D,SuperWangKai/Urho3D,victorholt/Urho3D,cosmy1/Urho3D,weitjong/Urho3D,MeshGeometry/Urho3D,SirNate0/Urho3D,299299/Urho3D,codedash64/Urho3D,k... |
49bb646254fae8539b1489c75e0bfd794816b196 | exec_wrappers/templates/run-in_conda.bat | exec_wrappers/templates/run-in_conda.bat | @echo off
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@endlocal & (
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activa... | @echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@... | Fix conda wrapper for Windows | Fix conda wrapper for Windows | Batchfile | mit | gqmelo/exec-wrappers,gqmelo/exec-wrappers |
7eb297ff8f6bae04c1deec045de7d5ea6cf4aa4c | test.bat | test.bat | java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/db3-3-11.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestP... | java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestPackage
| Remove inclusion db3-3-11.jar in the classpath | Remove inclusion db3-3-11.jar in the classpath
git-svn-id: 227c23bb629cf7bef445105b977924772e49ae4f@1111499 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | danc86/jena-core,danc86/jena-core |
1211b225505bbe9405ea8c0246a2b57541ff6ced | build.bat | build.bat | c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
hg history > \\ironpaw\pub\jasons\arcrest\changelog.txt
| c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
copy tests.py \\ironpaw\pub\jasons\arcrest\tests.py
hg history > \\ironpaw\pub\jasons\arcrest\ch... | Copy tests to ironpaw too | Copy tests to ironpaw too
| Batchfile | apache-2.0 | Esri/arcpy-server-util-rest,jasonbot/arcrest,jasonbot/arcrest |
f2af483214b5e3a8e225d1e9f3c0ad221edd922b | build.cmd | build.cmd | @echo off
:Build
cls
if not exist tools\FAKE.Core\tools\Fake.exe (
"tools\nuget\nuget.exe" "install" "FAKE.Core" "-OutputDirectory" "tools" "-ExcludeVersion" "-Prerelease"
)
SET TARGET="Default"
IF NOT [%1]==[] (set TARGET="%1")
SET BUILDMODE="Release"
IF NOT [%2]==[] (set BUILDMODE="%2")
"tools\FAKE.Core\tools\... | @echo off
SET MinimalFAKEVersion=639
SET FAKEVersion=1
cls
if exist tools\FAKE.Core\tools\PatchVersion.txt (
FOR /F "tokens=*" %%i in (tools\FAKE.Core\tools\PatchVersion.txt) DO (SET FAKEVersion=%%i)
)
if %MinimalFAKEVersion% lss %FAKEVersion% goto Build
if %MinimalFAKEVersion%==%FAKEVersion% goto Build
"t... | Check if we are already on the minimal FAKE version - otherwise patch it. | Check if we are already on the minimal FAKE version - otherwise patch it.
| Batchfile | mit | thedillonb/octokit.net,nsnnnnrn/octokit.net,octokit/octokit.net,octokit-net-test/octokit.net,thedillonb/octokit.net,cH40z-Lord/octokit.net,ivandrofly/octokit.net,editor-tools/octokit.net,fffej/octokit.net,devkhan/octokit.net,rlugojr/octokit.net,adamralph/octokit.net,dampir/octokit.net,M-Zuber/octokit.net,Red-Folder/oct... |
7723715d8e996d9389f0961571ba663b6016029a | bin/password.bat | bin/password.bat | @echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0-SNAPSHOT.jar;%LIBDIR%\vt-crypt-2.1.1.jar;%L... | @echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set LIBDIR=%VTPASS_HOME%\lib
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0.jar;%LIBDIR%\v... | Update script for latest vt-dictionary. | Update script for latest vt-dictionary.
| Batchfile | apache-2.0 | dfish3r/vt-password,dfish3r/vt-password |
b2bc88148c39c449cb198e0ee1099bc446890a25 | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
java -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End1
:No1
ECHO Mis... | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
"%JAVA_HOME%\bin\java" -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End... | Use JAVA_HOME for schema creation | Use JAVA_HOME for schema creation
| Batchfile | apache-2.0 | aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server |
539a7f48e214611cf12c677e661e54d97d8da4c3 | MakeSharpDX.cmd | MakeSharpDX.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | Switch to Visual Studio 2012 for build release | [Build] Switch to Visual Studio 2012 for build release
| Batchfile | mit | tomba/Toolkit,sharpdx/Toolkit,sharpdx/Toolkit |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.