commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
a5942d50d3d6e301301371e042d1c68793d6c99f
src/vm/jvm/runners/nqp.bat
src/vm/jvm/runners/nqp.bat
@java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar nqp %*
@java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar;3rdparty/jline/jline-1.0.jar nqp %*
Fix Windows runner to load jline JAR.
Fix Windows runner to load jline JAR.
Batchfile
artistic-2.0
cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp,cygx/nqp
aadffa19c05715f281667e6a5fa4945881334978
make.bat
make.bat
@rem if we don't have nmake in the path, we need to run setup where nmake.exe 2> NUL if %ERRORLEVEL% GTR 0 set need_setup=1 @rem if we don't have the include path set, we need to run setup if not defined INCLUDE set need_setup=1 @rem run setup if we need to if %need_setup% == 1 call "c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 @rem Allow python build to succeed: @rem http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat SET VS90COMNTOOLS=%VS120COMNTOOLS% @rem finally, run make nmake /nologo /s /f winbuild\Makefile %1
@rem if we don't have nmake in the path, we need to run setup where nmake.exe 2> NUL if %ERRORLEVEL% GTR 0 set need_setup=1 @rem if we don't have the include path set, we need to run setup if not defined INCLUDE set need_setup=1 @rem run setup if we need to if %need_setup% == 1 call "c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 @rem Allow python build to succeed: @rem http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat SET VS90COMNTOOLS=%VS120COMNTOOLS% where python.exe 2> NUL if %ERRORLEVEL% GTR 0 set PATH=c:\Python27;%PATH% where php.exe 2> NUL if %ERRORLEVEL% GTR 0 set PATH=c:\php;%PATH% @rem finally, run make nmake /nologo /s /f winbuild\Makefile %1
Adjust windows build script some more
Adjust windows build script some more Make a guess about php and python locations
Batchfile
mit
wez/watchman,nodakai/watchman,dhruvsinghal/watchman,dhruvsinghal/watchman,kwlzn/watchman,wez/watchman,nodakai/watchman,dhruvsinghal/watchman,kwlzn/watchman,dhruvsinghal/watchman,dhruvsinghal/watchman,dcolascione/laptop-watchman,nodakai/watchman,wez/watchman,kwlzn/watchman,wez/watchman,dcolascione/laptop-watchman,facebook/watchman,wez/watchman,nodakai/watchman,wez/watchman,facebook/watchman,kwlzn/watchman,facebook/watchman,wez/watchman,wez/watchman,facebook/watchman,nodakai/watchman,nodakai/watchman,dcolascione/laptop-watchman,dcolascione/laptop-watchman,dhruvsinghal/watchman,dhruvsinghal/watchman,wez/watchman,dcolascione/laptop-watchman,facebook/watchman,kwlzn/watchman,facebook/watchman,facebook/watchman,facebook/watchman,dcolascione/laptop-watchman,dcolascione/laptop-watchman,facebook/watchman,dhruvsinghal/watchman,nodakai/watchman,dcolascione/laptop-watchman,kwlzn/watchman,kwlzn/watchman,nodakai/watchman,nodakai/watchman
fc6c001adfd5545fb13af3659eaa55e858ace0bd
build.cmd
build.cmd
@echo off setlocal enabledelayedexpansion where /q msbuild if "%ERRORLEVEL%" == "0" ( goto :SkipDeveloperSetup ) set DeveloperCommandPrompt=%VS140COMNTOOLS%\VsDevCmd.bat if not exist "%DeveloperCommandPrompt%" ( echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015 installed. echo. echo Visit this page to download: echo. echo https://go.microsoft.com/fwlink/?LinkId=691978^&clcid=0x409 exit /b 1 ) call "%DeveloperCommandPrompt%" || goto :BuildFailed :SkipDeveloperSetup powershell -NoProfile -NoLogo -ExecutionPolicy Bypass -Command "& \"%~dp0build.ps1\" %*; exit $LastExitCode;" exit /b %ERRORLEVEL% :BuildFailed echo Build failed with ERRORLEVEL %ERRORLEVEL% exit /b 1
@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 installed. echo. echo Visit this page to download: echo. echo https://go.microsoft.com/fwlink/?LinkId=691978^&clcid=0x409 exit /b 1 ) call "%DeveloperCommandPrompt%" || goto :BuildFailed :SkipDeveloperSetup powershell -NoProfile -NoLogo -ExecutionPolicy Bypass -Command "& \"%~dp0build.ps1\" %*; exit $LastExitCode;" exit /b %ERRORLEVEL% :BuildFailed echo Build failed with ERRORLEVEL %ERRORLEVEL% exit /b 1
Build with VS 15 dev tools
Build with VS 15 dev tools
Batchfile
mit
nkolev92/sdk,nkolev92/sdk
7c361f76faffd9862483b986f90fbd8b924238aa
buildandtest.cmd
buildandtest.cmd
@ECHO OFF REM Sample usages: REM REM Building and running tests REM - build.libgit2sharp.cmd REM REM Building and identifying potential leaks while running tests REM - build.libgit2sharp.cmd "LEAKS_IDENTIFYING" SETLOCAL SET EXTRADEFINE=%~1 where dotnet 1>nul 2>nul IF ERRORLEVEL 1 ( ECHO Cannot find dotnet.exe. Run from a VS2017 Developer Prompt. EXIT /B 1 ) ECHO ON SET Configuration=Release :: Restore packages dotnet restore "%~dp0\" @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% :: Build dotnet build "%~dp0\" /v:minimal /nologo /property:ExtraDefine="%EXTRADEFINE%" @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% :: Run tests on Desktop and CoreCLR "%userprofile%\.nuget\packages\xunit.runner.console\2.2.0\tools\xunit.console.exe" "%~dp0bin\LibGit2Sharp.Tests\%Configuration%\net46\LibGit2Sharp.Tests.dll" -noshadow @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% dotnet test "%~dp0LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj" --no-build -f netcoreapp1.0 @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% EXIT /B %ERRORLEVEL%
@ECHO OFF REM Sample usages: REM REM Building and running tests REM - buildandtest.cmd REM REM Building and identifying potential leaks while running tests REM - buildandtest.cmd "LEAKS_IDENTIFYING" SETLOCAL SET EXTRADEFINE=%~1 where dotnet 1>nul 2>nul IF ERRORLEVEL 1 ( ECHO Cannot find dotnet.exe. Run from a VS2017 Developer Prompt. EXIT /B 1 ) ECHO ON SET Configuration=Release :: Restore packages dotnet restore "%~dp0\" @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% :: Build dotnet build "%~dp0\" /v:minimal /nologo /property:ExtraDefine="%EXTRADEFINE%" @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% :: Run tests on Desktop and CoreCLR "%userprofile%\.nuget\packages\xunit.runner.console\2.2.0\tools\xunit.console.exe" "%~dp0bin\LibGit2Sharp.Tests\%Configuration%\net46\LibGit2Sharp.Tests.dll" -noshadow @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% dotnet test "%~dp0LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj" --no-build -f netcoreapp1.0 @IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL% EXIT /B %ERRORLEVEL%
Fix build script comments to match new name
Fix build script comments to match new name
Batchfile
mit
libgit2/libgit2sharp,PKRoma/libgit2sharp,Zoxive/libgit2sharp,Zoxive/libgit2sharp
a70d5e07f0bdaa5a347f362ecab45ccfeb004a94
run_tests.cmd
run_tests.cmd
@echo off set PYTHON=%~1 set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% python -m pytest python -m flake8
set PYTHON=%~1 set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% pytest flake8
Use pytest and flake8 commands.
Use pytest and flake8 commands.
Batchfile
mit
jonlabelle/Trimmer,jonlabelle/Trimmer
b8f3115e163bf0104f45c9bc74b76e352b0ab084
_OpenInAndroidStudio.bat
_OpenInAndroidStudio.bat
set projectPath=%~dp0 set androidStudioBin=A:\AndroidStudio\bin rem Android Studio needs the project path without a trailing backslash if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1% start "" /D "%androidStudioBin%" "studio.exe" "%projectPath%"
set projectPath=%~dp0 set androidStudioBin=A:\AndroidStudio\bin rem Android Studio needs the project path without a trailing backslash if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1% start "" /D "%androidStudioBin%" "studio64.exe" "%projectPath%"
Use studio64.exe instead of studio.exe
Use studio64.exe instead of studio.exe
Batchfile
mit
berrnd/Time-Recording-Auto-Export-Tasker-Plugin,berrnd/Time-Recording-Auto-Export-Tasker-Plugin
bb0bb221c6c296a80bc4b2a0c7de77ccefcfbf4c
windows/new-dev-system.cmd
windows/new-dev-system.cmd
@echo off :: install chocolatey @powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin choco feature enable -n allowGlobalConfirmation :: general apps choco upgrade chocolatey 7zip 7zip.commandline putty filezilla adobereader slack javaruntime choco upgrade autoruns sdelete procexp procmon choco upgrade curl wget wput zip unzip optipng :: dev apps choco upgrade postgresql-9.3 pgadmin3 choco upgrade tortoisesvn git gitkraken choco upgrade atom visualstudiocode choco upgrade visualstudio2012professional -packageParameters "/Features:'OfficeTools'" choco upgrade ankhsvn wixtoolset ilspy depends choco upgrade dotnet4.6 dotnet4.5.2 dotnet4.5.1 dotnet4.5 dotnet3.5
@echo off :: install chocolatey @powershell -NoProfile -ExecutionPolicy unrestricted -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin choco feature enable -n allowGlobalConfirmation :: general apps choco upgrade chocolatey choco upgrade 7zip 7zip.commandline putty filezilla adobereader slack javaruntime gimp paint.net choco upgrade autoruns sdelete procexp procmon choco upgrade curl wget wput zip unzip optipng choco upgrade inconsolata :: dev apps choco upgrade postgresql-9.3 pgadmin3 choco upgrade tortoisesvn git gitkraken choco upgrade atom visualstudiocode choco upgrade visualstudio2012professional -packageParameters "/Features:'OfficeTools'" choco upgrade ankhsvn wixtoolset ilspy depends choco upgrade dotnet4.6 dotnet4.5.2 dotnet4.5.1 dotnet4.5 dotnet3.5
Add gimp, paint.net and inconsolata
Add gimp, paint.net and inconsolata
Batchfile
unlicense
garethflowers/configs
97bdb945aa78ef7d6e44e6fca1186a8b668c57fd
src/main/bin/unravl.bat
src/main/bin/unravl.bat
@echo off Rem Run UnRAVL's main entry point. Rem Command line arguments are UnRAVL script files to execute: Rem unravl.bat script1.json script2.json script3.json set UNRAVL_DIR=%~dp0..\..\.. set UNRAVL_JAR_DIR=%UNRAVL_DIR%\build\libs set UNRAVL_LIB_DIR=%UNRAVL_DIR%\build\output\lib java -Dapp.name=UnRAVL ^ -classpath %UNRAVL_JAR_DIR%\*;%UNRAVL_LIB_DIR%\* ^ %UNRAVL_OPT% ^ com.sas.unravl.Main ^ "%*"
@echo off Rem Run UnRAVL's main entry point. Rem Command line arguments are UnRAVL script files to execute: Rem unravl.bat script1.json script2.json script3.json set UNRAVL_DIR=%~dp0..\..\.. set UNRAVL_JAR_DIR=%UNRAVL_DIR%\build\libs set UNRAVL_LIB_DIR=%UNRAVL_DIR%\build\output\lib java -Dapp.name=UnRAVL ^ -classpath %UNRAVL_JAR_DIR%\*;%UNRAVL_LIB_DIR%\* ^ %UNRAVL_OPT% ^ com.sas.unravl.Main ^ %*
Remove quotes around file from Windows batch
Remove quotes around file from Windows batch
Batchfile
apache-2.0
DavidBiesack/unravl,DavidBiesack/unravl,sassoftware/unravl,sassoftware/unravl
cdfa1e8a0bd8fa63812c7f214609aa71c6233abf
ci/jenkins.cmd
ci/jenkins.cmd
@ECHO OFF SET BASEDIR=%~dp0.. SET USERINI=%BASEDIR%\user.ini FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do ( set CF_USER=%%a set CF_PASS=%%b ) SET PYTHON_HOME=C:\Python36 SET DOTNET_HOME=C:\Program Files\dotnet SET JAVA_HOME=C:\opt\oracle-jdk-8 SET GIT_HOME=C:\Program Files\Git SET MAVEN_HOME=C:\opt\apache-maven-3.3.9 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% ECHO output = C:\steeltoe-test >> %USERINI% SET PATH=%PYTHON_HOME%\Scripts;%DOTNET_HOME%;%JAVA_HOME%\bin;%GIT_HOME%\bin;%MAVEN_HOME%\bin;%PATH% CALL %BASEDIR%\test-setup CALL %BASEDIR%\test-run %*
@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_HOME=C:\opt\apache-maven-3.3.9 SET TEST_OUT=C:\st\%~nx1 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% ECHO output = %TEST_OUT% >> %USERINI% SET PATH=%PYTHON_HOME%\Scripts;%DOTNET_HOME%;%JAVA_HOME%\bin;%GIT_HOME%\bin;%MAVEN_HOME%\bin;%PATH% CALL %BASEDIR%\test-setup CALL %BASEDIR%\test-run %*
Use unique test out for each sample
Use unique test out for each sample
Batchfile
apache-2.0
SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples
8ca1a57c2ea8ab34d47b9738ebf59729cc966c76
workspace/_BuildRaceDetector.cmd
workspace/_BuildRaceDetector.cmd
@ECHO OFF Setlocal EnableDelayedExpansion CALL __Global.cmd ECHO *** Go Build *** ECHO Build compiles packages and dependencies with race condition detector ECHO. FOR /F "tokens=*" %%A IN (Packages.txt) DO ( SET PACKAGE=%%A ECHO Building: !PACKAGE! cd "%GOPATH%\src\!PACKAGE!" go build -v -race %LDFLAGS% !PACKAGE! ECHO. IF !ERRORLEVEL! NEQ 0 PAUSE )
@ECHO OFF Setlocal EnableDelayedExpansion CALL __Global.cmd ECHO *** Go Build *** ECHO Build compiles packages and dependencies with race condition detector ECHO. FOR /F "tokens=*" %%A IN (Packages.txt) DO ( SET PACKAGE=%%A ECHO Building: !PACKAGE! cd "%GOPATH%\src\!PACKAGE!" DEL /Q /F *.syso go build -v -race %LDFLAGS% !PACKAGE! ECHO. IF !ERRORLEVEL! NEQ 0 PAUSE )
Delete syso file before building with race detector
Delete syso file before building with race detector It will throw an error otherwise
Batchfile
mit
josephspurrier/golang-portable-windows
cfdff1cdc2e689a8db7c3b147f9860ea4b660b79
install_windows.bat
install_windows.bat
@echo off cd src pip install -r requirements.txt pause
@echo off cd src pip install -r requirements.txt copy src\settings\local.py.example src\settings\local.py pause
Add local.py to windows install
Add local.py to windows install
Batchfile
agpl-3.0
hirunatan/estelcon_web,hirunatan/estelcon_web,hirunatan/estelcon_web,hirunatan/estelcon_web
acb5f7d1ba69b3c93ba869f2ad70468c8a739323
conda.recipe/bld.bat
conda.recipe/bld.bat
call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x64 set DISTUTILS_USE_SDK=1 set MSSdk=1 "%PYTHON%" setup.py install if errorlevel 1 exit 1
if "%ARCH%" == "32" (set PLATFORM=x86) else (set PLATFORM=x64) call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% set DISTUTILS_USE_SDK=1 set MSSdk=1 "%PYTHON%" setup.py install if errorlevel 1 exit 1
Fix conda build on 32-bit Windows
Fix conda build on 32-bit Windows
Batchfile
mpl-2.0
pikepdf/pikepdf,pikepdf/pikepdf,pikepdf/pikepdf
ac658c08e56fd19da9d1639a404a5416b88639c8
Tools/buildbot/buildmsi.bat
Tools/buildbot/buildmsi.bat
@rem Used by the buildbot "buildmsi" step. cmd /c Tools\buildbot\external.bat @rem build release versions of things call "%VS90COMNTOOLS%vsvars32.bat" if not exist ..\db-4.4.20\build_win32\release\libdb44s.lib ( vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static ) @rem build Python cmd /q/c Tools\buildbot\kill_python.bat vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" @rem build the documentation bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' "%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\pydoc.hhp @rem buold the MSI file cd PC nmake /f icons.mak cd ..\Tools\msi del *.msi nmake /f msisupport.mak %HOST_PYTHON% msi.py
@rem Used by the buildbot "buildmsi" step. cmd /c Tools\buildbot\external.bat @rem build release versions of things call "%VS90COMNTOOLS%vsvars32.bat" @rem build Python cmd /q/c Tools\buildbot\kill_python.bat vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" @rem build the documentation bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' "%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\pydoc.hhp @rem buold the MSI file cd PC nmake /f icons.mak cd ..\Tools\msi del *.msi nmake /f msisupport.mak %HOST_PYTHON% msi.py
Remove the building of Berkeley DB step; _bsddb44.vcproj takes care of this for us now.
Remove the building of Berkeley DB step; _bsddb44.vcproj takes care of this for us now.
Batchfile
mit
sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator
60d4efcdafe841ddb8f4e0958195fb51ebf4f1f7
build-windows.bat
build-windows.bat
@echo off echo Building Module. echo Dependencies: GIT, PREMAKE5, VISUAL STUDIO 2015/2013. echo. :: Hacky way to ensure we've got a git repository & submodules at our disposal git init git submodule update --init --recursive echo. :: Fire up a Visual Studio command-line environment and generate our solution IF DEFINED VS140COMNTOOLS ( echo Preparing for build with Visual Studio 2015. premake5 vs2015 CALL "%VS140COMNTOOLS%VsMSBuildCmd.bat" ) ELSE IF DEFINED VS120COMNTOOLS ( echo Preparing for build with Visual Studio 2013. premake5 vs2013 CALL "%VS120COMNTOOLS%VsMSBuildCmd.bat" ) ELSE ( echo Failed to detect Visual Studio installation. timeout 5 exit /B 1 ) echo. for /R project %%X in (*.sln) do ( msbuild %%X ) :: We're done! timeout 5 exit /B %ERRORLEVEL%
@echo off echo Building Module. echo Dependencies: GIT, PREMAKE5, VISUAL STUDIO 2015/2013. echo. :: Hacky way to ensure we've got a git repository & submodules at our disposal git init git submodule update --init --recursive echo. :: Fire up a Visual Studio command-line environment and generate our solution IF DEFINED VS140COMNTOOLS ( echo Preparing for build with Visual Studio 2015. premake5 vs2015 CALL "%VS140COMNTOOLS%VSDevCmd.bat" ) ELSE IF DEFINED VS120COMNTOOLS ( echo Preparing for build with Visual Studio 2013. premake5 vs2013 CALL "%VS120COMNTOOLS%VSDevCmd.bat" ) ELSE ( echo Failed to detect Visual Studio installation. timeout 5 exit /B 1 ) echo. for /R project %%X in (*.sln) do ( msbuild %%X ) :: We're done! timeout 5 exit /B %ERRORLEVEL%
Use VsDevCmd.Bat rather than VsMSBuildCmd.bat
Use VsDevCmd.Bat rather than VsMSBuildCmd.bat
Batchfile
cc0-1.0
LennyPenny/gm_megamenu,LennyPenny/gm_megamenu,glua/module-base,glua/module-base,LennyPenny/gm_megamenu
c31405734c609f677041760a6193951f1cfa12a3
cppbuild/cppbuild-driver-vs.cmd
cppbuild/cppbuild-driver-vs.cmd
@if "%DEBUG%" == "" @echo off setlocal set SOURCE_DIR=%CD% set BUILD_DIR=%CD%\cppbuild\Release if EXIST %BUILD_DIR% rd /S /Q %BUILD_DIR% md %BUILD_DIR% pushd %BUILD_DIR% cmake -G "Visual Studio 16 2019" -DBUILD_AERON_DRIVER=ON %SOURCE_DIR% cmake --build . --clean-first --config Release ctest -C Release
@if "%DEBUG%" == "" @echo off setlocal set SOURCE_DIR=%CD% set BUILD_DIR=%CD%\cppbuild\Release if EXIST %BUILD_DIR% rd /S /Q %BUILD_DIR% md %BUILD_DIR% pushd %BUILD_DIR% cmake -G "Visual Studio 16 2019" -DBUILD_AERON_DRIVER=ON %SOURCE_DIR% if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL% cmake --build . --clean-first --config Release if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL% ctest -C Release if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL%
Exit on first error (Windows)
[C] Exit on first error (Windows)
Batchfile
apache-2.0
real-logic/Aeron,real-logic/Aeron,mikeb01/Aeron,real-logic/Aeron,EvilMcJerkface/Aeron,real-logic/Aeron,EvilMcJerkface/Aeron,mikeb01/Aeron,mikeb01/Aeron,mikeb01/Aeron,EvilMcJerkface/Aeron,EvilMcJerkface/Aeron
49a1ecedb8e059d2c08f4d09e0cdefc98d4a347f
model/generate.bat
model/generate.bat
@ECHO OFF REM Run all code generation scripts REM Requires iMatix GSL4, from http:\\www.nuget.org\packages\gslgen REM Use this when: REM - you add a socket option (sockopts.xml) REM - add a new project class (project.xml) REM - modify one of the referenced gsl templates (*.gsl) mkdir ..\builds\mingw32 mkdir ..\builds\android mkdir ..\builds\msvc\vs2008\czmq mkdir ..\builds\msvc\vs2008\czmq_selftest mkdir ..\builds\msvc\vs2010\czmq mkdir ..\builds\msvc\vs2010\czmq_selftest mkdir ..\builds\msvc\vs2012\czmq mkdir ..\builds\msvc\vs2012\czmq_selftest mkdir ..\builds\msvc\vs2013\czmq mkdir ..\builds\msvc\vs2013\czmq_selftest gslgen -q -script:sockopts.gsl sockopts.xml gslgen -q -script:project.gsl project.xml
@ECHO OFF REM Run all code generation scripts REM Requires iMatix GSL4, from http:\\www.nuget.org\packages\gsl REM Use this when: REM - you add a socket option (sockopts.xml) REM - add a new project class (project.xml) REM - modify one of the referenced gsl templates (*.gsl) mkdir ..\builds\mingw32 mkdir ..\builds\android mkdir ..\builds\msvc\vs2008\czmq mkdir ..\builds\msvc\vs2008\czmq_selftest mkdir ..\builds\msvc\vs2010\czmq mkdir ..\builds\msvc\vs2010\czmq_selftest mkdir ..\builds\msvc\vs2012\czmq mkdir ..\builds\msvc\vs2012\czmq_selftest mkdir ..\builds\msvc\vs2013\czmq mkdir ..\builds\msvc\vs2013\czmq_selftest gsl -q -script:sockopts.gsl sockopts.xml gsl -q -script:project.gsl project.xml
Use gsl vs. gslgen for batch model builds.
Use gsl vs. gslgen for batch model builds.
Batchfile
mpl-2.0
hintjens/czmq,eburkitt/czmq,trevorbernard/czmq,pmienk/czmq,evoskuil/czmq,kodjobaah/czmq,opedroso/czmq,trevorbernard/czmq,ritchiecarroll/czmq,modulexcite/czmq,c-rack/czmq,opedroso/czmq,tberkey/czmq,twhittock/czmq,soumith/czmq,zeromq/czmq,saki4510t/czmq,twhittock/czmq,mhaberler/czmq,opedroso/czmq,evoskuil/czmq,maxkozlovsky/czmq,c-rack/czmq,Asmod4n/czmq,superjudge/czmq,opedroso/czmq,evoskuil/czmq,superjudge/czmq,soumith/czmq,oikosdev/czmq,kodjobaah/czmq,zeromq/czmq,superjudge/czmq,hintjens/czmq,oikosdev/czmq,portworx/czmq,hintjens/czmq,trevorbernard/czmq,Asmod4n/czmq,zeromq/czmq,keent/czmq,twhittock/czmq,oikosdev/czmq,kodjobaah/czmq,awynne/czmq,jemc/czmq,taotetek/czmq,superjudge/czmq,taotetek/czmq,eburkitt/czmq,QbaseLLC/czmq,opedroso/czmq,evoskuil/czmq,awynne/czmq,oikosdev/czmq,awynne/czmq,maxkozlovsky/czmq,tberkey/czmq,soumith/czmq,trevorbernard/czmq,portworx/czmq,keent/czmq,oikosdev/czmq,modulexcite/czmq,eburkitt/czmq,saki4510t/czmq,jemc/czmq,tberkey/czmq,eburkitt/czmq,awynne/czmq,saki4510t/czmq,taotetek/czmq,eburkitt/czmq,evoskuil/czmq,oikosdev/czmq,jemc/czmq,awynne/czmq,pmienk/czmq,eburkitt/czmq,trevorbernard/czmq,portworx/czmq,hintjens/czmq,mhaberler/czmq,maxkozlovsky/czmq,keent/czmq,zeromq/czmq,hintjens/czmq,c-rack/czmq,jemc/czmq,awynne/czmq,zeromq/czmq,pmienk/czmq,evoskuil/czmq,soumith/czmq,jemc/czmq,c-rack/czmq,modulexcite/czmq,pmienk/czmq,maxkozlovsky/czmq,Asmod4n/czmq,saki4510t/czmq,ritchiecarroll/czmq,keent/czmq,eburkitt/czmq,hintjens/czmq,keent/czmq,c-rack/czmq,superjudge/czmq,zeromq/czmq,trevorbernard/czmq,QbaseLLC/czmq,twhittock/czmq,modulexcite/czmq,modulexcite/czmq,keent/czmq,awynne/czmq,Asmod4n/czmq,ritchiecarroll/czmq,eburkitt/czmq,mhaberler/czmq,pmienk/czmq,ritchiecarroll/czmq,evoskuil/czmq,ritchiecarroll/czmq,superjudge/czmq,ritchiecarroll/czmq,eburkitt/czmq,portworx/czmq,taotetek/czmq,mhaberler/czmq,hintjens/czmq,c-rack/czmq,ritchiecarroll/czmq,twhittock/czmq,twhittock/czmq,saki4510t/czmq,soumith/czmq,saki4510t/czmq,taotetek/czmq,tberkey/czmq,awynne/czmq,modulexcite/czmq,Asmod4n/czmq,soumith/czmq,tberkey/czmq,mhaberler/czmq,QbaseLLC/czmq,pmienk/czmq,opedroso/czmq,portworx/czmq,mhaberler/czmq,zeromq/czmq,zeromq/czmq,saki4510t/czmq,oikosdev/czmq,keent/czmq,soumith/czmq,evoskuil/czmq,twhittock/czmq,evoskuil/czmq,trevorbernard/czmq,jemc/czmq,saki4510t/czmq,taotetek/czmq,Asmod4n/czmq,twhittock/czmq,oikosdev/czmq,ritchiecarroll/czmq,maxkozlovsky/czmq,saki4510t/czmq,hintjens/czmq,twhittock/czmq,trevorbernard/czmq,c-rack/czmq,tberkey/czmq,pmienk/czmq,superjudge/czmq,portworx/czmq,QbaseLLC/czmq,opedroso/czmq,c-rack/czmq,taotetek/czmq,taotetek/czmq,pmienk/czmq,opedroso/czmq,maxkozlovsky/czmq,QbaseLLC/czmq,QbaseLLC/czmq,maxkozlovsky/czmq,taotetek/czmq,maxkozlovsky/czmq,portworx/czmq,opedroso/czmq,modulexcite/czmq,portworx/czmq,jemc/czmq,kodjobaah/czmq,keent/czmq
40f0f5ad8dd56691ae42e9dd4b9a2f5e5395f3ee
tests/core/math/big/build.bat
tests/core/math/big/build.bat
@echo off rem math/big tests set PATH_TO_ODIN==..\..\..\..\odin set TEST_ARGS=-fast-tests set TEST_ARGS=-no-random set TEST_ARGS= set OUT_NAME=math_big_test_library set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style echo --- echo Running core:math/big tests echo --- %PATH_TO_ODIN% build . %COMMON% -o:speed -out:%OUT_NAME% python3 test.py %TEST_ARGS%
@echo off rem math/big tests set PATH_TO_ODIN==..\..\..\..\odin set TEST_ARGS=-fast-tests set TEST_ARGS=-no-random set TEST_ARGS= set OUT_NAME=math_big_test_library.dll set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style echo --- echo Running core:math/big tests echo --- %PATH_TO_ODIN% build . %COMMON% -o:speed -out:%OUT_NAME% python3 test.py %TEST_ARGS%
Update CI for math library.
Update CI for math library.
Batchfile
bsd-3-clause
gingerBill/Odin,gingerBill/Odin,gingerBill/Odin,gingerBill/Odin
3eab43780b4d1039ec3a1d473651644a6716d6b7
ArchiSteamFarm/scripts/generic/ArchiSteamFarm.cmd
ArchiSteamFarm/scripts/generic/ArchiSteamFarm.cmd
@echo off pushd %~dp0 dotnet ArchiSteamFarm.dll %ASF_ARGS%
@echo off pushd %~dp0 :loop IF NOT "%1" == "" ( SET ASF_ARGS=%ASF_ARGS% %1 SHIFT GOTO :loop ) dotnet ArchiSteamFarm.dll %ASF_ARGS%
Add arguments parsing to batch script
Add arguments parsing to batch script Kill me.
Batchfile
apache-2.0
i3at/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,JustArchi/ArchiSteamFarm,i3at/ArchiSteamFarm,KlappPc/ArchiSteamFarm,KlappPc/ArchiSteamFarm,JustArchi/ArchiSteamFarm,KlappPc/ArchiSteamFarm
fe9d89bbfeaf5b9a59d6e5320d826ffaaefbe6cd
build.bat
build.bat
@echo off cls cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\" ".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion" cd ..\..\..\..\.. "packages\FAKE\tools\Fake.exe" build.fsx --envvar version 0.19.0 "packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version 0.19.0 "packages\FAKE\tools\Fake.exe" chocolatey.fsx --envvar version 0.19.0
@echo off set "picklesVersion=0.19.0" cls cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\" ".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion" cd ..\..\..\..\.. "packages\FAKE\tools\Fake.exe" build.fsx --envvar version %picklesVersion% "packages\FAKE\tools\Fake.exe" nuget.fsx --envvar version %picklesVersion% "packages\FAKE\tools\Fake.exe" chocolatey.fsx --envvar version %picklesVersion%
Set the version in an environment variable
Set the version in an environment variable
Batchfile
apache-2.0
dirkrombauts/pickles,picklesdoc/pickles,picklesdoc/pickles,picklesdoc/pickles,irfanah/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,magicmonty/pickles,dirkrombauts/pickles,irfanah/pickles,blorgbeard/pickles,blorgbeard/pickles,dirkrombauts/pickles,magicmonty/pickles,irfanah/pickles,picklesdoc/pickles,magicmonty/pickles,ludwigjossieaux/pickles,magicmonty/pickles,irfanah/pickles,blorgbeard/pickles,blorgbeard/pickles,ludwigjossieaux/pickles
4898fdc1d7209fd0d16a4822a3e6d1b6bfa728f8
rest/startMZmine.bat
rest/startMZmine.bat
@echo off cls java -Dj3d.rend=d3d -Djava.util.logging.config.file=conf/logging.properties -Xms512m -Xmx1384m -cp MZmine.jar net.sf.mzmine.main.MZmineClient
@echo off cls java -Dj3d.rend=d3d -Djava.library.path=lib -Djava.util.logging.config.file=conf/logging.properties -Xms512m -Xmx1384m -cp MZmine.jar net.sf.mzmine.main.MZmineClient
Complete implementation of module io running as a task.
Complete implementation of module io running as a task.
Batchfile
mit
mzmine/mzmine3,mzmine/mzmine3
9feaa90ff6509cef124bd99eab4fafb1112537aa
Tools/buildbot/external.bat
Tools/buildbot/external.bat
@rem Fetches (and builds if necessary) external dependencies @rem Assume we start inside the Python source directory call "Tools\buildbot\external-common.bat" call "%VS90COMNTOOLS%\vsvars32.bat" if not exist tcltk\bin\tcl85g.dll ( cd tcl-8.5.2.1\win nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all install cd ..\.. ) if not exist tcltk\bin\tk85g.dll ( cd tk-8.5.2.0\win nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean all install cd ..\.. )
@rem Fetches (and builds if necessary) external dependencies @rem Assume we start inside the Python source directory call "Tools\buildbot\external-common.bat" call "%VS90COMNTOOLS%\vsvars32.bat" if not exist tcltk\bin\tcl85.dll ( @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install cd tcl-8.5.2.1\win nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install cd ..\.. ) if not exist tcltk\bin\tk85.dll ( cd tk-8.5.2.0\win nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install cd ..\.. )
Split Tcl make targets into separate ones.
Split Tcl make targets into separate ones.
Batchfile
mit
sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator
1651db799bd08bee3d06491e85417f84ba9391ae
CERR_core/Contouring/BABS/sshContainerExecScript.bat
CERR_core/Contouring/BABS/sshContainerExecScript.bat
set ssh_key=%1 set ssh_server_name=%2 set ssh_uname=%3 set client_session_dir=%4 set server_session_dir=%5 set session_name=%6 set container_path=%7 set algorithm=%8 @echo %algorithm% @echo here 1 @echo %client_session_dir% @echo %server_session_dir% pscp -noagent -r %client_session_dir% %ssh_uname%@%ssh_server_name%:%server_session_dir% @echo "here 2" set bindingPath=%server_session_dir%/%session_name%:/scratch @echo "here 3" plink -noagent -ssh %ssh_uname%@%ssh_server_name% (source /admin/lsf/mph/conf/profile.lsf; bsub -R rusage[mem=30] -q research -n 1 -W 1:00 -gpu "num=1:gmem=4GB:mode=exclusive_process:mps=no:j_exclusive=yes" -Is singularity run --app %algorithm% --nv --bind %bindingPath% %container_path% %server_session_dir%/%session_name%) @echo "here 4" pscp -noagent -r %ssh_uname%@%ssh_server_name%:%server_session_dir%/%session_name%/outputH5 %client_session_dir% @echo "here 5"
set ssh_key=%1 set ssh_server_name=%2 set ssh_uname=%3 set client_session_dir=%4 set server_session_dir=%5 set session_name=%6 set container_path=%7 set algorithm=%8 @echo %algorithm% @echo Copying session dir from client to server... @echo %client_session_dir% @echo %server_session_dir% pscp -noagent -r %client_session_dir% %ssh_uname%@%ssh_server_name%:%server_session_dir% @echo Setting bind path for container set bindingPath=%server_session_dir%/%session_name%:/scratch @echo Executing container plink -noagent -ssh %ssh_uname%@%ssh_server_name% (source /admin/lsf/mph/conf/profile.lsf; bsub -R rusage[mem=30] -q research -n 1 -W 1:00 -gpu "num=1:gmem=4GB:mode=exclusive_process:mps=no:j_exclusive=yes" -Is singularity run --app %algorithm% --nv --bind %bindingPath% %container_path% %server_session_dir%/%session_name%) @echo Copying result back to Client from Server pscp -noagent -r %ssh_uname%@%ssh_server_name%:%server_session_dir%/%session_name%/outputH5 %client_session_dir% @echo DONE
Debug print statements for executing container in client-server configuration
Debug print statements for executing container in client-server configuration
Batchfile
lgpl-2.1
cerr/CERR,cerr/CERR,cerr/CERR,cerr/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,cerr/CERR,cerr/CERR,aditiiyer/CERR,aditiiyer/CERR,aditiiyer/CERR,cerr/CERR,aditiiyer/CERR,cerr/CERR,cerr/CERR
1786e591f9d02bcdc60ef190a570ea9966ceb7d6
src/Pelasoft.AspNet.Mvc.Slack/nuget-pack.bat
src/Pelasoft.AspNet.Mvc.Slack/nuget-pack.bat
nuget pack Pelasoft.AspNet.Mvc.Slack.csproj -Verbosity detailed -Build -IncludeReferencedProjects -Properties Configuration=Release
@echo off echo. echo ###### Nuget Creation Checklist ###### echo ## ## echo ## * Update assembly version number ## echo ## * Update nuspec revision notes ## echo ## * Create tag after final commit ## echo ## ## echo ######################################## echo. nuget pack Pelasoft.AspNet.Mvc.Slack.csproj -Verbosity detailed -Build -IncludeReferencedProjects -Properties Configuration=Release
Add package action remind notice.
Add package action remind notice.
Batchfile
mit
peterlanoie/aspnet-mvc-slack
69984c0b111d2470aef26631a056088bb1b9f91e
recipes/yaml-cpp4rkt/bld.bat
recipes/yaml-cpp4rkt/bld.bat
@REM Configure the build of phreeqc4rkt cmake -S . -B build ^ -DCMAKE_BUILD_TYPE=Release ^ -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^ -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ -DBUILD_SHARED_LIBS=ON ^ -DYAML_BUILD_SHARED_LIBS=ON ^ -DYAML_CPP_BUILD_TESTS=OFF @REM Build and install phreeqc4rkt in %LIBRARY_PREFIX% @REM Note: No need for --parallel below, since cmake takes care of the /MP flag for MSVC cmake --build build --config Release --target install
@REM Configure the build of yaml-cpp4rkt cmake -S . -B build ^ -DCMAKE_BUILD_TYPE=Release ^ -DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^ -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ -DBUILD_SHARED_LIBS=ON ^ -DYAML_BUILD_SHARED_LIBS=ON ^ -DYAML_CPP_BUILD_TESTS=OFF @REM Build and install yaml-cpp4rkt in %LIBRARY_PREFIX% @REM Note: No need for --parallel below, since cmake takes care of the /MP flag for MSVC cmake --build build --config Release --target install
Fix comment lines refering to other lib
Fix comment lines refering to other lib
Batchfile
bsd-3-clause
goanpeca/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes
87dad55d12b104dcce7245d6a6d50ad3a7b289ca
common/examples/common/odb.d/20-simple-fe.cmd
common/examples/common/odb.d/20-simple-fe.cmd
mkdir "Equipment/Simple Frontend/Settings" create DOUBLE "Equipment/Simple Frontend/Settings/mean" set "Equipment/Simple Frontend/Settings/mean" 0.0 create DOUBLE "Equipment/Simple Frontend/Settings/sigma" set "Equipment/Simple Frontend/Settings/sigma" 1.0
mkdir "Equipment/Simple Frontend/Settings" create DOUBLE "Equipment/Simple Frontend/Settings/min" set "Equipment/Simple Frontend/Settings/min" 0.0 create DOUBLE "Equipment/Simple Frontend/Settings/max" set "Equipment/Simple Frontend/Settings/max" 1.0
Use min/max instead of mean/sigma.
Use min/max instead of mean/sigma.
Batchfile
mit
g2-field-team/field-daq
f7bb40e6999946333c68a85e998d0311d3d5491d
Tools/Appveyor.after_deploy.bat
Tools/Appveyor.after_deploy.bat
@echo on @SET /A exitcode=0 @SET /A TESTFAILURE_ERROR=1 @SET /A PUSHARTIFACT_ERROR=2 @SET /A READREPORT_ERROR=4 nunit3-console.exe Tests\CSF.Screenplay.WebApis.Tests\bin\Debug\CSF.Screenplay.WebApis.Tests.dll @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%TESTFAILURE_ERROR% appveyor PushArtifact SpecFlow.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%PUSHARTIFACT_ERROR% appveyor PushArtifact JsonApis.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%PUSHARTIFACT_ERROR% @echo ****************** @echo Screenplay reports @echo ****************** @type SpecFlow.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%READREPORT_ERROR% @type JsonApis.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%READREPORT_ERROR% @echo off @EXIT /B %exitcode%
@echo on @SET /A exitcode=0 @SET /A TESTFAILURE_ERROR=1 @SET /A PUSHARTIFACT_ERROR=2 @SET /A READREPORT_ERROR=4 nunit3-console.exe Tests\CSF.Screenplay.WebApis.Tests\bin\Debug\CSF.Screenplay.WebApis.Tests.dll @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%TESTFAILURE_ERROR% appveyor PushArtifact SpecFlow.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%PUSHARTIFACT_ERROR% appveyor PushArtifact JsonApis.report.txt @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%PUSHARTIFACT_ERROR% @echo ****************** @echo Screenplay reports @echo ****************** @type SpecFlow.report.json @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%READREPORT_ERROR% @type JsonApis.report.json @IF %ERRORLEVEL% NEQ 0 SET /A exitcode^|=%READREPORT_ERROR% @echo off @EXIT /B %exitcode%
Update AppVeyor script now that output files are changed
Update AppVeyor script now that output files are changed
Batchfile
mit
csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay
44e2494682eda601f669cc512b0455e17a13e714
tools/release_win.bat
tools/release_win.bat
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
Add Program Files\7-Zip to path
Add Program Files\7-Zip to path
Batchfile
apache-2.0
mirek2580/namebench
df39739683ff6265950ce13a5c81cf161abc787c
src/msc/ffihugs.bat
src/msc/ffihugs.bat
@echo off REM First build up the command line to pass on in %s% set s= :begin if "%1" == "" goto done set s=%s% "%1" shift goto begin :done REM Now figure out what to do if not "%VS71COMNTOOLS%" == "" call "%VS71COMNTOOLS%vsvars32.bat" > nul cl %s%
@echo off REM First build up the command line to pass on in %s% set s= :begin if '%1' == '' goto done set s=%s% %1 shift goto begin :done REM Now figure out what to do if not "%VS71COMNTOOLS%" == "" call "%VS71COMNTOOLS%vsvars32.bat" > nul cl %s%
Update the batch file to work with certain quoting mechanisms employed by Cabal
Update the batch file to work with certain quoting mechanisms employed by Cabal
Batchfile
bsd-3-clause
FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs,FranklinChen/Hugs
ee965c2d44865d2b23e6ce2eff6b4888b3b53bde
src/MICore/ValidateDesignerFile.cmd
src/MICore/ValidateDesignerFile.cmd
@echo off setlocal REM Copyright (c) Microsoft. All rights reserved. REM Licensed under the MIT license. See LICENSE file in the project root for full license information. if "%~3"=="" goto help if NOT "%~4"=="" goto help goto Run :Help echo syntax: ValidateDesignerFile.cmd ^<path_to_designer_file^> ^<path_to_candidate_file^> ^<intermediate_directory^> echo. echo ValidateDesignerFile.cmd will determine if the designer file and the candidate echo file are the same (excluding full line c-style comments and whitespace). echo If they are different the designer file will be updated. echo. exit /b -1 :Run if not exist "%2" echo ERROR: %2 does not exist & exit /b -1 if not exist "%1" goto :UpdateFile findstr /v /r /c:"^ *//" %1 > "%~3\%~nx1-nocomments" findstr /v /r /c:"^ *//" %2 > "%~3\%~nx2-nocomments" fc /W "%~3\%~nx1-nocomments" "%~3\%~nx2-nocomments" if not "%ERRORLEVEL%"=="0" goto UpdateFile echo %1 is already up to date. exit /b 0 :UpdateFile echo Updating %1 copy /y %2 %1 if NOT %ERRORLEVEL%==0 echo ERROR: Unable to update %1. >&2 & exit /b -1 exit /b 0
@echo off setlocal REM Copyright (c) Microsoft. All rights reserved. REM Licensed under the MIT license. See LICENSE file in the project root for full license information. if "%~3"=="" goto help if NOT "%~4"=="" goto help goto Run :Help echo syntax: ValidateDesignerFile.cmd ^<path_to_designer_file^> ^<path_to_candidate_file^> ^<intermediate_directory^> echo. echo ValidateDesignerFile.cmd will determine if the designer file and the candidate echo file are the same (excluding full line c-style comments and whitespace). echo If they are different the designer file will be updated. echo. exit /b -1 :Run if not exist "%2" echo ERROR: %2 does not exist & exit /b -1 if not exist "%1" goto :UpdateFile findstr /v /r /c:"^ *//" %1 | findstr /v /c:"[System.CodeDom.Compiler.GeneratedCodeAttribute(" > "%~3\%~nx1-nocomments" findstr /v /r /c:"^ *//" %2 | findstr /v /c:"[System.CodeDom.Compiler.GeneratedCodeAttribute(" > "%~3\%~nx2-nocomments" fc /W "%~3\%~nx1-nocomments" "%~3\%~nx2-nocomments" if not "%ERRORLEVEL%"=="0" goto UpdateFile echo %1 is already up to date. exit /b 0 :UpdateFile echo Updating %1 copy /y %2 %1 if NOT %ERRORLEVEL%==0 echo ERROR: Unable to update %1. >&2 & exit /b -1 exit /b 0
Fix designer files getting updated just for version number changes
Fix designer files getting updated just for version number changes This checkin makes a change to ValidateDesignerFile.cmd so that if only the file version inside a GeneratedCodeAttribute changed, the files are not considered different.
Batchfile
mit
upsoft/MIEngine,devilman3d/MIEngine,idkwim/MIEngine,devilman3d/MIEngine,caslan/MIEngine,upsoft/MIEngine,rajkumar42/MIEngine,Microsoft/MIEngine,chuckries/MIEngine,UIKit0/MIEngine,bbqchickenrobot/MIEngine,yazeng/MIEngine,PistonDevelopers/MIEngine,jacdavis/MIEngine,yacoder/MIEngine,rajkumar42/MIEngine,chuckries/MIEngine,Microsoft/MIEngine,chuckries/MIEngine,jacdavis/MIEngine,faxue-msft/MIEngine,gregg-miskelly/MIEngine,pieandcakes/MIEngine,enginekit/MIEngine,xincun/MIEngine,enginekit/MIEngine,idkwim/MIEngine,orbitcowboy/MIEngine,phofman/MIEngine,edumunoz/MIEngine,wiktork/MIEngine,orbitcowboy/MIEngine,idkwim/MIEngine,kelltrick/MIEngine,thurday/MIEngine,gregg-miskelly/MIEngine,csiusers/MIEngine,faxue-msft/MIEngine,thurday/MIEngine,edumunoz/MIEngine,wesrupert/MIEngine,rajkumar42/MIEngine,jacdavis/MIEngine,pieandcakes/MIEngine,wesrupert/MIEngine,devilman3d/MIEngine,wesrupert/MIEngine,gregg-miskelly/MIEngine,csiusers/MIEngine,kelltrick/MIEngine,kelltrick/MIEngine,vosen/MIEngine,devilman3d/MIEngine,xingshenglu/MIEngine,yazeng/MIEngine,yazeng/MIEngine,Microsoft/MIEngine,orbitcowboy/MIEngine,xincun/MIEngine,caslan/MIEngine,pieandcakes/MIEngine,phofman/MIEngine,thurday/MIEngine,xingshenglu/MIEngine,bbqchickenrobot/MIEngine,csiusers/MIEngine,xingshenglu/MIEngine,yacoder/MIEngine,pieandcakes/MIEngine,rajkumar42/MIEngine,orbitcowboy/MIEngine,chuckries/MIEngine,UIKit0/MIEngine,phofman/MIEngine,csiusers/MIEngine,wiktork/MIEngine,upsoft/MIEngine,xincun/MIEngine,conniey/MIEngine,yacoder/MIEngine,Microsoft/MIEngine,caslan/MIEngine,caslan/MIEngine,edumunoz/MIEngine,edumunoz/MIEngine,conniey/MIEngine,enginekit/MIEngine,bbqchickenrobot/MIEngine,faxue-msft/MIEngine,conniey/MIEngine,wiktork/MIEngine,faxue-msft/MIEngine,wesrupert/MIEngine,UIKit0/MIEngine
b2a95b9fd0dd934423c1804274c0687b2a998892
tools/buildexe.bat
tools/buildexe.bat
@ECHO OFF CD winrun4j COPY WinRun4J64.exe DNGearSim.exe RCEDIT64.exe /N DNGearSim.exe DNGearSim.ini RCEDIT64.exe /S DNGearSim.exe splash.bmp RCEDIT64.exe /I DNGearSim.exe icon.ico COPY "DNGearSim.exe" "../../runtime/DNGearSim.exe" CD ../.. CD Bootstrap/target COPY "bootstrap.jar" "../../runtime/bootstrap.jar" PAUSE
@ECHO OFF CD winrun4j COPY WinRun4J64.exe DNGearSim.exe RCEDIT64.exe /N DNGearSim.exe DNGearSim.ini RCEDIT64.exe /S DNGearSim.exe splash.bmp RCEDIT64.exe /I DNGearSim.exe icon.ico COPY "DNGearSim.exe" "../../runtime/DNGearSim.exe" CD ../.. CD Bootstrap/target COPY "bootstrap.jar" "../../runtime/bootstrap.jar" CD ../..
Remove unnecessary pause, CD back to top
Remove unnecessary pause, CD back to top
Batchfile
mit
vincentzhang96/DNGearSim
a0aa84917f8f9d99c636dd491054c24c508fbf4c
argus/resources/windows/schedule_installer.bat
argus/resources/windows/schedule_installer.bat
schtasks /CREATE /TN "cloudbaseinit-installer" /SC ONCE /SD 01/01/2020 /ST 00:00:00 /RL HIGHEST /RU CiAdmin /RP Passw0rd /TR "powershell C:\\installcbinit.ps1 -serviceType %1 -installer %2" /F schtasks /RUN /TN "cloudbaseinit-installer" timeout /t 5 :loop for /f "tokens=2 delims=: " %%f in ('schtasks /query /tn EnablePS-Remoting /fo list ^| find "Status:"' ) do ( if "%%f"=="Running" ( timeout /T 1 /NOBREAK > nul goto loop ) )
schtasks /CREATE /TN "cloudbaseinit-installer" /SC ONCE /SD 01/01/2020 /ST 00:00:00 /RL HIGHEST /RU CiAdmin /RP Passw0rd /TR "powershell C:\\installcbinit.ps1 -serviceType %1 -installer %2" /F schtasks /RUN /TN "cloudbaseinit-installer" timeout /t 5 :loop for /f "tokens=2 delims=: " %%f in ('schtasks /query /tn cloudbaseinit-installer /fo list ^| find "Status:"' ) do ( if "%%f"=="Running" ( timeout /T 1 /NOBREAK > nul goto loop ) )
Fix the name of the scheduled task.
Fix the name of the scheduled task.
Batchfile
apache-2.0
AlexandruTudose/cloudbase-init-ci,PCManticore/argus-ci,cmin764/argus-ci,cloudbase/cloudbase-init-ci,micumatei/cloudbase-init-ci,stefan-caraiman/cloudbase-init-ci
5faca28970d9d3829b5a867a193786aca3f81948
extras/scripts/postsubmit.bat
extras/scripts/postsubmit.bat
echo on set PATH=C:\Windows\system32;C:\Windows;%PYTHON3_PATH%;%PYTHON3_PATH%\Scripts;%CMAKE_PATH%; if not "%VCVARSALL_DIR%" == "" CALL "%VCVARSALL_DIR%\vcvarsall.bat" amd64 if not "%MINGW_PATH%" == "" SET PATH=%PATH%%MINGW_PATH%; setx PATH "%PATH%" mkdir C:\Fruit\build-%CONFIGURATION% cd C:\Fruit\build-%CONFIGURATION% cmake.exe -G "%CMAKE_GENERATOR%" .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DBUILD_TESTS_IN_RELEASE_MODE=True %ADDITIONAL_CMAKE_ARGS% || exit /b 1 IF "%CMAKE_GENERATOR%"=="MinGW Makefiles" ( mingw32-make -j12 || exit /b 1 ) ELSE ( msbuild ALL_BUILD.vcxproj || exit /b 1 ) pip3 install pytest pip3 install pytest-xdist ctest.exe -j 1 --output-on-failure -C %CONFIGURATION% || exit /b 1
echo on set PATH=C:\Windows\system32;C:\Windows;%PYTHON3_PATH%;%PYTHON3_PATH%\Scripts;%CMAKE_PATH%; if not "%VCVARSALL_DIR%" == "" CALL "%VCVARSALL_DIR%\vcvarsall.bat" amd64 if not "%MINGW_PATH%" == "" SET PATH=%PATH%%MINGW_PATH%; setx PATH "%PATH%" mkdir C:\Fruit\build-%CONFIGURATION% cd C:\Fruit\build-%CONFIGURATION% cmake.exe -G "%CMAKE_GENERATOR%" .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DBUILD_TESTS_IN_RELEASE_MODE=True %ADDITIONAL_CMAKE_ARGS% || exit /b 1 echo "Content of CMakeFiles\CMakeError.log:" if exist "CMakeFiles\CMakeError.log" type "CMakeFiles\CMakeError.log" fi IF "%CMAKE_GENERATOR%"=="MinGW Makefiles" ( mingw32-make -j12 || exit /b 1 ) ELSE ( msbuild ALL_BUILD.vcxproj || exit /b 1 ) pip3 install pytest pip3 install pytest-xdist ctest.exe -j 1 --output-on-failure -C %CONFIGURATION% || exit /b 1
Print the contents of CMakeError.log after running CMake for CI tests on Windows. This helps investigate why a CHECK_CXX_SOURCE_COMPILES check failed.
Print the contents of CMakeError.log after running CMake for CI tests on Windows. This helps investigate why a CHECK_CXX_SOURCE_COMPILES check failed.
Batchfile
apache-2.0
google/fruit,google/fruit,google/fruit
b977bfd9e6643a74d85fe05fb699734f042ac210
new-client.bat
new-client.bat
@echo off set REPO_URL=https://raw.githubusercontent.com/PixxxeL/regular-gulpfile/master/ echo =========================================================================== echo 1. Create bower.json, package.json echo 2. Download gulpfile.js and skeleton echo 3. Make directories echo. pause && npm init && bower init && ^ npm install gulp gulp-sass gulp-jade gulp-shell gulp-coffee && ^ curl -O %REPO_URL%gulpfile.js && ^ mkdir jade html coffee js sass css img && ^ cd coffee && ^ curl -O %REPO_URL%coffee/main.coffee && ^ cd ..\jade && ^ curl -O %REPO_URL%jade/base.jade && ^ curl -O %REPO_URL%jade/index.jade && ^ cd ..\sass && ^ curl -O %REPO_URL%sass/_definitions.sass && ^ curl -O %REPO_URL%sass/main.sass && ^ cd .. && ^ echo. && echo Job finish! exit 0
@echo off set REPO_URL=https://raw.githubusercontent.com/PixxxeL/regular-gulpfile/master/ echo =========================================================================== echo 1. Create bower.json, package.json echo 2. Download gulpfile.js and skeleton echo 3. Make directories echo. pause && npm init && bower init && ^ npm install gulp gulp-sass gulp-jade gulp-shell gulp-coffee && ^ curl -O %REPO_URL%gulpfile.js && ^ mkdir jade html coffee js sass css img && ^ bower install jquery html5-boilerplate && ^ cp bower_components/jquery/dist/jquery.min.js js/jquery.min.js && ^ cp bower_components/html5-boilerplate/dist/css/normalize.css css/normalize.css && ^ cd coffee && ^ curl -O %REPO_URL%coffee/main.coffee && ^ cd ..\jade && ^ curl -O %REPO_URL%jade/base.jade && ^ curl -O %REPO_URL%jade/index.jade && ^ cd ..\sass && ^ curl -O %REPO_URL%sass/_definitions.sass && ^ curl -O %REPO_URL%sass/main.sass && ^ cd .. && ^ echo. && echo Job finish! exit 0
Add bower install and copy installed to
Add bower install and copy installed to
Batchfile
mit
PixxxeL/regular-gulpfile,PixxxeL/regular-gulpfile,PixxxeL/regular-gulpfile
c07c55b936118c42a3a9d8bcc2de3b9b589715c7
tool/generate.cmd
tool/generate.cmd
@echo off echo Generating C-style Win32 APIs and tests call dart %~dp0win32\win32api.dart call dart %~dp0win32\generate_ffi_jsonproto.dart call dart %~dp0metadata\win32.dart %~dp0..\lib\src\generated call dart %~dp0win32\generate_tests.dart echo. echo Generating COM classes from Windows metadata call dart %~dp0metadata\com.dart %~dp0..\lib\src\generated echo. echo Generating Windows Runtime classes from Windows metadata call dart %~dp0metadata\winrt.dart %~dp0..\lib\src\generated echo. echo Formatting generated source code call dart format %~dp0..\lib\src call dart format %~dp0..\test\api_test.dart call dart format %~dp0..\test\struct_test.dart call dart format %~dp0..\test\com echo. if "%1"=="--notest" goto end echo Running tests call dart test :end
@echo off echo Generating C-style Win32 APIs and tests call dart %~dp0win32\win32api.dart call dart %~dp0win32\generate_ffi_jsonproto.dart call dart %~dp0metadata\win32.dart %~dp0..\lib\src\generated call dart %~dp0win32\generate_tests.dart echo. echo Generating COM classes from Windows metadata call dart %~dp0metadata\com.dart %~dp0..\lib\src\generated echo. echo Generating Windows Runtime classes from Windows metadata call dart %~dp0metadata\winrt.dart %~dp0..\lib\src\generated echo. echo Formatting generated source code call dart format %~dp0..\lib\src call dart format %~dp0..\test\api_test.dart call dart format %~dp0..\test\struct_test.dart call dart format %~dp0..\test\com echo. echo Running tests if "%1"=="--use-dart-test" goto dart_test call flutter test goto end :dart_test call dart test :end
Use flutter test for faster testing
Use flutter test for faster testing
Batchfile
bsd-3-clause
timsneath/win32,timsneath/win32,timsneath/win32
21a1293d84ced49f30783b87afd9a8cc98b9631d
build/win/githeader.bat
build/win/githeader.bat
@echo off rem Generate the header file from the Store info about in which git branch, rem what SHA1 and at what date/time we executed make. for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 1}"') do set GIT_BRANCH=%%a for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 2 | select -Last 1}"') do set GIT_COMMIT=%%a echo '#ifndef ROOT_RGITCOMMIT_H' > $1 echo '#define ROOT_RGITCOMMIT_H' >> $1 echo '#define ROOT_GIT_BRANCH "%GIT_BRANCH%"' >> $1 echo '#define ROOT_GIT_COMMIT "%GIT_COMMIT%"' >> $1 echo '#endif' >> $1
@echo off rem Generate the header file from the Store info about in which git branch, rem what SHA1 and at what date/time we executed make. for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 1}"') do set GIT_BRANCH=%%a for /f "delims=" %%a in ('powershell.exe -command "& {Get-Content .\etc\gitinfo.txt | select -First 2 | select -Last 1}"') do set GIT_COMMIT=%%a echo #ifndef ROOT_RGITCOMMIT_H > %1 echo #define ROOT_RGITCOMMIT_H >> %1 echo #define ROOT_GIT_BRANCH "%GIT_BRANCH%" >> %1 echo #define ROOT_GIT_COMMIT "%GIT_COMMIT%" >> %1 echo #endif >> %1
Use proper batch script syntax
Use proper batch script syntax
Batchfile
lgpl-2.1
esakellari/root,CristinaCristescu/root,BerserkerTroll/root,beniz/root,vukasinmilosevic/root,krafczyk/root,satyarth934/root,sirinath/root,lgiommi/root,zzxuanyuan/root,root-mirror/root,lgiommi/root,buuck/root,pspe/root,simonpf/root,gbitzes/root,jrtomps/root,gganis/root,sirinath/root,Y--/root,perovic/root,buuck/root,zzxuanyuan/root-compressor-dummy,davidlt/root,mhuwiler/rootauto,sirinath/root,esakellari/my_root_for_test,satyarth934/root,perovic/root,arch1tect0r/root,mhuwiler/rootauto,abhinavmoudgil95/root,zzxuanyuan/root,BerserkerTroll/root,buuck/root,satyarth934/root,Y--/root,sirinath/root,olifre/root,root-mirror/root,zzxuanyuan/root-compressor-dummy,veprbl/root,vukasinmilosevic/root,sbinet/cxx-root,mhuwiler/rootauto,zzxuanyuan/root-compressor-dummy,esakellari/my_root_for_test,buuck/root,nilqed/root,Y--/root,omazapa/root,abhinavmoudgil95/root,davidlt/root,zzxuanyuan/root,jrtomps/root,nilqed/root,georgtroska/root,agarciamontoro/root,mhuwiler/rootauto,mkret2/root,agarciamontoro/root,mkret2/root,vukasinmilosevic/root,gganis/root,agarciamontoro/root,karies/root,simonpf/root,gganis/root,pspe/root,CristinaCristescu/root,omazapa/root-old,evgeny-boger/root,sbinet/cxx-root,krafczyk/root,gbitzes/root,BerserkerTroll/root,mkret2/root,sawenzel/root,veprbl/root,mkret2/root,vukasinmilosevic/root,CristinaCristescu/root,omazapa/root-old,krafczyk/root,mhuwiler/rootauto,buuck/root,krafczyk/root,karies/root,nilqed/root,sawenzel/root,beniz/root,jrtomps/root,olifre/root,satyarth934/root,zzxuanyuan/root,mkret2/root,georgtroska/root,veprbl/root,thomaskeck/root,dfunke/root,arch1tect0r/root,omazapa/root,esakellari/root,pspe/root,buuck/root,CristinaCristescu/root,gganis/root,veprbl/root,mattkretz/root,jrtomps/root,sbinet/cxx-root,lgiommi/root,gganis/root,olifre/root,Y--/root,Y--/root,esakellari/root,evgeny-boger/root,bbockelm/root,gganis/root,omazapa/root,arch1tect0r/root,vukasinmilosevic/root,karies/root,mattkretz/root,olifre/root,davidlt/root,nilqed/root,esakellari/my_root_for_test,sawenzel/root,nilqed/root,mattkretz/root,Duraznos/root,agarciamontoro/root,BerserkerTroll/root,jrtomps/root,BerserkerTroll/root,Y--/root,thomaskeck/root,simonpf/root,BerserkerTroll/root,zzxuanyuan/root-compressor-dummy,gbitzes/root,perovic/root,pspe/root,karies/root,vukasinmilosevic/root,mhuwiler/rootauto,root-mirror/root,krafczyk/root,abhinavmoudgil95/root,zzxuanyuan/root,gbitzes/root,esakellari/root,omazapa/root,dfunke/root,simonpf/root,lgiommi/root,abhinavmoudgil95/root,dfunke/root,agarciamontoro/root,CristinaCristescu/root,sbinet/cxx-root,nilqed/root,jrtomps/root,omazapa/root-old,georgtroska/root,sirinath/root,zzxuanyuan/root-compressor-dummy,mkret2/root,evgeny-boger/root,root-mirror/root,olifre/root,esakellari/root,perovic/root,evgeny-boger/root,BerserkerTroll/root,esakellari/my_root_for_test,arch1tect0r/root,zzxuanyuan/root-compressor-dummy,Duraznos/root,CristinaCristescu/root,gbitzes/root,agarciamontoro/root,arch1tect0r/root,buuck/root,gganis/root,mattkretz/root,zzxuanyuan/root,bbockelm/root,arch1tect0r/root,vukasinmilosevic/root,nilqed/root,olifre/root,karies/root,omazapa/root-old,dfunke/root,sbinet/cxx-root,perovic/root,jrtomps/root,veprbl/root,Y--/root,sawenzel/root,simonpf/root,zzxuanyuan/root-compressor-dummy,omazapa/root,nilqed/root,lgiommi/root,evgeny-boger/root,sawenzel/root,perovic/root,CristinaCristescu/root,thomaskeck/root,Duraznos/root,sbinet/cxx-root,karies/root,simonpf/root,mattkretz/root,vukasinmilosevic/root,mattkretz/root,simonpf/root,Y--/root,agarciamontoro/root,evgeny-boger/root,CristinaCristescu/root,sirinath/root,Duraznos/root,esakellari/my_root_for_test,buuck/root,thomaskeck/root,perovic/root,beniz/root,jrtomps/root,davidlt/root,zzxuanyuan/root-compressor-dummy,mhuwiler/rootauto,bbockelm/root,evgeny-boger/root,sawenzel/root,beniz/root,omazapa/root,gbitzes/root,omazapa/root,satyarth934/root,bbockelm/root,pspe/root,veprbl/root,mattkretz/root,georgtroska/root,veprbl/root,esakellari/root,vukasinmilosevic/root,gbitzes/root,olifre/root,agarciamontoro/root,root-mirror/root,zzxuanyuan/root,abhinavmoudgil95/root,lgiommi/root,lgiommi/root,davidlt/root,veprbl/root,beniz/root,omazapa/root,pspe/root,sbinet/cxx-root,CristinaCristescu/root,mattkretz/root,evgeny-boger/root,davidlt/root,abhinavmoudgil95/root,arch1tect0r/root,simonpf/root,perovic/root,BerserkerTroll/root,arch1tect0r/root,lgiommi/root,satyarth934/root,BerserkerTroll/root,pspe/root,karies/root,omazapa/root,zzxuanyuan/root,BerserkerTroll/root,mkret2/root,omazapa/root-old,arch1tect0r/root,omazapa/root,davidlt/root,Y--/root,perovic/root,dfunke/root,esakellari/root,bbockelm/root,veprbl/root,gbitzes/root,veprbl/root,nilqed/root,sawenzel/root,beniz/root,lgiommi/root,mattkretz/root,zzxuanyuan/root-compressor-dummy,satyarth934/root,abhinavmoudgil95/root,dfunke/root,lgiommi/root,arch1tect0r/root,abhinavmoudgil95/root,perovic/root,krafczyk/root,omazapa/root-old,lgiommi/root,mkret2/root,root-mirror/root,esakellari/my_root_for_test,sbinet/cxx-root,abhinavmoudgil95/root,simonpf/root,vukasinmilosevic/root,Duraznos/root,olifre/root,nilqed/root,dfunke/root,esakellari/root,zzxuanyuan/root,sirinath/root,jrtomps/root,esakellari/root,buuck/root,evgeny-boger/root,vukasinmilosevic/root,pspe/root,omazapa/root-old,georgtroska/root,buuck/root,thomaskeck/root,olifre/root,zzxuanyuan/root-compressor-dummy,zzxuanyuan/root,beniz/root,davidlt/root,satyarth934/root,gganis/root,sawenzel/root,BerserkerTroll/root,Duraznos/root,esakellari/root,Y--/root,abhinavmoudgil95/root,mhuwiler/rootauto,georgtroska/root,root-mirror/root,sirinath/root,satyarth934/root,CristinaCristescu/root,zzxuanyuan/root,jrtomps/root,evgeny-boger/root,bbockelm/root,thomaskeck/root,bbockelm/root,thomaskeck/root,omazapa/root,simonpf/root,simonpf/root,root-mirror/root,karies/root,Duraznos/root,bbockelm/root,beniz/root,pspe/root,sirinath/root,sawenzel/root,davidlt/root,davidlt/root,sirinath/root,root-mirror/root,mhuwiler/rootauto,omazapa/root-old,mkret2/root,gbitzes/root,sawenzel/root,mhuwiler/rootauto,dfunke/root,mattkretz/root,satyarth934/root,karies/root,root-mirror/root,thomaskeck/root,karies/root,krafczyk/root,omazapa/root-old,CristinaCristescu/root,bbockelm/root,mkret2/root,zzxuanyuan/root,sirinath/root,sbinet/cxx-root,georgtroska/root,buuck/root,abhinavmoudgil95/root,krafczyk/root,beniz/root,olifre/root,olifre/root,pspe/root,satyarth934/root,georgtroska/root,mattkretz/root,georgtroska/root,Y--/root,zzxuanyuan/root-compressor-dummy,gganis/root,beniz/root,gbitzes/root,nilqed/root,krafczyk/root,veprbl/root,esakellari/my_root_for_test,esakellari/my_root_for_test,georgtroska/root,davidlt/root,sawenzel/root,evgeny-boger/root,Duraznos/root,omazapa/root-old,Duraznos/root,omazapa/root-old,gganis/root,agarciamontoro/root,mhuwiler/rootauto,bbockelm/root,krafczyk/root,jrtomps/root,perovic/root,mkret2/root,agarciamontoro/root,esakellari/root,Duraznos/root,Duraznos/root,esakellari/my_root_for_test,agarciamontoro/root,thomaskeck/root,gganis/root,gbitzes/root,thomaskeck/root,beniz/root,sbinet/cxx-root,sbinet/cxx-root,karies/root,krafczyk/root,dfunke/root,dfunke/root,georgtroska/root,dfunke/root,root-mirror/root,arch1tect0r/root,bbockelm/root,esakellari/my_root_for_test,pspe/root
4db47b9ef7056b0f49a9f248bddd8c2f8468018a
src/application.bat
src/application.bat
### application.bat - 201x - votre nom ### echo "Build : 10:00" echo "version 1"
### application.bat - 2015 - Thibault ROGER ### echo "Build : 10:00" echo "version 1"
Add file header with right data
Add file header with right data
Batchfile
apache-2.0
leboucher/TP-git,leboucher/Versionning-TP1
727415fc2e7fbff1e897f4bea47ccb6fa3b83377
win-bundle-install.bat
win-bundle-install.bat
@echo off for /D %%i in (bundles/*) do ( if exist "%cd%\bundles\%%i\package.json" ( cd "%cd%\bundles\%%i" echo Updating %%i call npm install >nul 2>&1 ) )
@echo off for /D %%i in (bundles/*) do ( if exist "%cd%\bundles\%%i\package.json" ( pushd "%cd%\bundles\%%i" echo Updating %%i call npm install >nul 2>&1 popd ) )
Fix windows bundle install staying in bundle dir after install
Fix windows bundle install staying in bundle dir after install
Batchfile
mit
shawncplus/ranviermud
208f70a7340222c95078d68d41de9ca4fa09f548
build-msvc-release.bat
build-msvc-release.bat
scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=1 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=1 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buildLua=1 useDouble=1 dynamicCsoundLibrary=1 buildCSEditor=1 %1 %2 %3 %4
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 buildLua=1 useDouble=1 dynamicCsoundLibrary=1 buildCSEditor=1 %1 %2 %3 %4
Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
Batchfile
lgpl-2.1
csound/csound,csound/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,csound/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,csound/csound,ketchupok/csound,csound/csound,csound/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound,ketchupok/csound
149f8103929f9036b3b7040f9d6ba324791f172a
Build/build_portable.bat
Build/build_portable.bat
@ECHO OFF SET /p APPLICATION_VERSION=Tabster Version: SET BUILD_DIRECTORY=%CD% SET ZIP_ARCHIVE="%BUILD_DIRECTORY%\Tabster %APPLICATION_VERSION%.zip" pushd.. SET SOLUTION_DIRECTORY=%CD% SET VS_BUILD_DIRECTORY=%SOLUTION_DIRECTORY%\Tabster\bin\Portable\ ::build ECHO. ECHO Building Solution... C:\windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe "%SOLUTION_DIRECTORY%\Tabster.sln" /p:Configuration=Portable ::compress ECHO. ECHO Compressing... 7z a -r %ZIP_ARCHIVE% "%VS_BUILD_DIRECTORY%\*.exe" 7z a -r %ZIP_ARCHIVE% "%VS_BUILD_DIRECTORY%\*.dll"
@ECHO OFF SET /p APPLICATION_VERSION=Tabster Version: SET BUILD_DIRECTORY=%CD% SET ZIP_ARCHIVE="%BUILD_DIRECTORY%\Tabster %APPLICATION_VERSION%.zip" IF EXIST %ZIP_ARCHIVE% del /F %ZIP_ARCHIVE% pushd.. SET SOLUTION_DIRECTORY=%CD% SET VS_BUILD_DIRECTORY=%SOLUTION_DIRECTORY%\Tabster\bin\Portable\ ::build ECHO. ECHO Building Solution... C:\windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe "%SOLUTION_DIRECTORY%\Tabster.sln" /p:Configuration=Portable ::compress ECHO. ECHO Compressing... 7z a -r %ZIP_ARCHIVE% "%VS_BUILD_DIRECTORY%\*.exe" 7z a -r %ZIP_ARCHIVE% "%VS_BUILD_DIRECTORY%\*.dll"
Delete archive if it already exists.
Delete archive if it already exists.
Batchfile
apache-2.0
GetTabster/Tabster
cc44e809eb4d1c1f77c35335586227b264f25842
bin/nodist.cmd
bin/nodist.cmd
@echo off :: hook `nodist use <version>` if "%1"=="use" ( %0 + %2 if ERRORLEVEL 0 ( :: get path to version and add it to PATH FOR /F "tokens=1 delims=" %%A in ('"%0" path %2') do @set Path=%%A;%Path% ) goto end ) :: hook `nodist update` if "%1"=="update" ( pushd . cd /D "%~dp0\.." npm update popd ) :main "%~dp0\..\node.exe" "%~dp0\..\cli" %* goto end :end
@echo off :: hook `nodist use <version>` if "%1"=="use" ( %0 + %2 if ERRORLEVEL 0 ( :: get path to version and add it to PATH FOR /F "tokens=1 delims=" %%A in ('"%0" path %2') do @set "Path=%%A;%Path%" ) goto end ) :: hook `nodist update` if "%1"=="update" ( pushd . cd /D "%~dp0\.." npm update popd ) :main "%~dp0\..\node.exe" "%~dp0\..\cli" %* goto end :end
Fix a bug where brackets in PATH would break the batch script.
Fix a bug where brackets in PATH would break the batch script.
Batchfile
mit
marcelklehr/nodist,marcelklehr/nodist,marcelklehr/nodist,nullivex/nodist,nullivex/nodist,nullivex/nodist
cdc4906b4f7588c4759cb3b6dd4cca3ca91247bd
init.bat
init.bat
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* doskey touch=type nul$G$G$* doskey pwd=echo %CD% rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files (x86)\Microsoft VS Code" GOTO NOVSCODE doskey edit="C:\Program Files (x86)\Microsoft VS Code\bin\code.cmd" $* GOTO NOSUBLIME :NOVSCODE IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* doskey touch=type nul$G$G$* doskey pwd=echo %CD% rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality if exist ""%PROGRAMFILES%\Sublime Text 3"" ( doskey edit="%PROGRAMFILES%\Sublime Text 3\sublime_text" $* ) if exist ""%LOCALAPPDATA%\atom\app-1.4.0"" ( doskey edit=atom $* ) if exist ""%PROGRAMFILES(X86)%\Microsoft VS Code"" ( doskey edit="%PROGRAMFILES(X86)%\Microsoft VS Code\bin\code.cmd" $* ) rem Open functionality doskey open=start $* @echo on
Use environment variables and add atom support
Use environment variables and add atom support
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
8adb69691306d0dabad360ef0e380682420c6cb8
go.bat
go.bat
SET "memParams=-Xms2g -Xmx4g" rem SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080" SET debugParams= java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar -u D:\ -v G:\incoming\SnomedCT_RF2Release_INT_20160131.zip
SET "memParams=-Xms4g -Xmx8g" rem SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080" SET debugParams= java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar -u D:\ -v G:\incoming\SnomedCT_RF2Release_INT_20160131.zip
Increase memory for PC startup file
Increase memory for PC startup file
Batchfile
apache-2.0
IHTSDO/rf2-to-rf1-conversion,IHTSDO/rf2-to-rf1-conversion
e5e80ff0dc52750312f85c9415a311c4e91d779d
FullBuild.cmd
FullBuild.cmd
@echo off goto :main ====================================================================== Performs a clean build and create NuGet packages for this solution Note that this also modifies the following files, replacing placeholder version numbers with actual version numbers: src\common\GlobalAssemblyInfo.cs src\*.nuspec src\*\project.json (see the SetVersionNumber task in xunit.performance.msbuild) These files will, therefore, show up as modified after the build. Be careful NOT to check them in that way! If you publish these packages to Nuget, then please remember to bump the build number on BuildSemanticVersion below. ====================================================================== :main setlocal set BuildAssemblyVersion=1.0.0.0 set BuildSemanticVersion=1.0.0-alpha-build0007 echo Building version %BuildSemanticVersion% NuGet packages. echo WARNING: Some source files will be modified during this build. echo WARNING: Please be careful not to check in those modifications. msbuild.exe /m /nologo /t:CI /v:m /fl xunit.performance.msbuild goto :eof
@echo off goto :main ====================================================================== Performs a clean build and create NuGet packages for this solution Note that this also modifies the following files, replacing placeholder version numbers with actual version numbers: src\common\GlobalAssemblyInfo.cs src\*.nuspec src\*\project.json (see the SetVersionNumber task in xunit.performance.msbuild) These files will, therefore, show up as modified after the build. Be careful NOT to check them in that way! If you publish these packages to Nuget, then please remember to bump the build number on BuildSemanticVersion below. ====================================================================== :main setlocal set BuildAssemblyVersion=1.0.0.* set BuildSemanticVersion=1.0.0-alpha-build0007 echo Building version %BuildSemanticVersion% NuGet packages. echo WARNING: Some source files will be modified during this build. echo WARNING: Please be careful not to check in those modifications. msbuild.exe /m /nologo /t:CI /v:m /fl xunit.performance.msbuild goto :eof
Use automatic versioning for assembly version build number
Use automatic versioning for assembly version build number
Batchfile
mit
Microsoft/xunit-performance,Microsoft/xunit-performance,pharring/xunit-performance,mmitche/xunit-performance,ianhays/xunit-performance,ericeil/xunit-performance,visia/xunit-performance
f0b77418f4b7efce3edc13d937acf13951e4d02f
tools/createNugetPackages.cmd
tools/createNugetPackages.cmd
@ECHO OFF SET SUFFIX=%1 IF '%SUFFIX%' == '' GOTO NOSUFFIX for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do dotnet pack %%a --no-build -c Release -o "%~dp0..\nugets" --version-suffix %SUFFIX% GOTO END :NOSUFFIX ECHO Please provide verison suffix. ECHO.For example: ECHO.createNugetPackages 20160818 GOTO END :END
@ECHO OFF SET SUFFIX=%1 IF '%SUFFIX%' == '' GOTO NOSUFFIX for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do dotnet pack %%a --no-build -c Release -o "%~dp0..\nugets" --version-suffix %SUFFIX% GOTO END :NOSUFFIX for /f %%a in ('dir %~dp0..\src\project.json /b /s ^| find /v "Consumers"') do dotnet pack %%a --no-build -c Release -o "%~dp0..\nugets" GOTO END :END
Allow no suffix for creating nuget packages
Allow no suffix for creating nuget packages
Batchfile
mit
karolz-ms/diagnostics-eventflow
eddefdf4d0d767d24aa4acb006b42aae54c98933
src/application.bat
src/application.bat
### application.bat - 2015 - gandubert ### version = "1.2" build_hour = "11H00" echo "Build ${build_hour}" echo "version ${version}"
### application.bat - 2015 - gandubert MAIGNAN ### version = "1.2" build_hour = "11H00" echo "Build ${build_hour}" echo "version ${version}"
Update header for new member
Update header for new member
Batchfile
apache-2.0
joachim-gandubert/TP-git
7f9c2f352a6404e04d8c553374e2d8ee2b532bbc
pybox2d/dev/bld.bat
pybox2d/dev/bld.bat
if not exist C:\dev\swig goto noswig set PATH=C:\dev\swig;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC;%PATH% @echo off rem NOTE: If building under MobaSSH, the C:\Windows\System32\bsh\temp path is an issue rem You'll see something like this after the swig step: rem c1xx : fatal error C1083: Cannot open compiler intermediate file: rem 'C:\Windows\system32\bsh\tmp\_CL_96a80b23ex': No such file or directory echo.%TMP% | findstr /I /C:"system32\bsh">nul && ( echo "Detected MobaSSH session. Changing TMP path to C:\temp." mkdir C:\temp set TMP=C:\temp ) || ( echo "Running under regular command line" ) @echo on "%PYTHON%" setup.py build "%PYTHON%" setup.py install if errorlevel 1 exit 1 exit 0 :noswig echo "Expected SWIG to be in the path C:\dev\swig" echo "Please install swig >= 3.0.7 there from:" echo "http://sourceforge.net/projects/swig/files/swigwin/swigwin-3.0.7/swigwin-3.0.7.zip/download" exit 1
if not exist C:\dev\swig goto noswig echo on set PATH=C:\dev\swig;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC;%PATH% rem NOTE: git version tag broken on conda-build-1.18.2 (revert to 1.18.1 or use rem the version after when it's released) @echo off rem NOTE: If building under MobaSSH, the C:\Windows\System32\bsh\temp path is an issue rem You'll see something like this after the swig step: rem c1xx : fatal error C1083: Cannot open compiler intermediate file: rem 'C:\Windows\system32\bsh\tmp\_CL_96a80b23ex': No such file or directory echo.%TMP% | findstr /I /C:"system32\bsh">nul && ( echo "Detected MobaSSH session. Changing TMP path to C:\temp." mkdir C:\temp set TMP=C:\temp ) || ( echo "Running under regular command line" ) @echo on "%PYTHON%" setup.py build "%PYTHON%" setup.py install if errorlevel 1 exit 1 exit 0 :noswig echo "Expected SWIG to be in the path C:\dev\swig" echo "Please install swig >= 3.0.7 there from:" echo "http://sourceforge.net/projects/swig/files/swigwin/swigwin-3.0.7/swigwin-3.0.7.zip/download" exit 1
Add note about version tag being busted on conda-build-1.18.2 on windows
Add note about version tag being busted on conda-build-1.18.2 on windows
Batchfile
bsd-2-clause
kne/conda-recipes
0c99019a34fdbfa0e014ba15e4e4f54823e9c6d8
whiteboard/forrestdoc/build.bat
whiteboard/forrestdoc/build.bat
rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. @echo off set OLD_ANT_HOME=%ANT_HOME% set ANT_HOME=..\..\tools\ant set OLD_CLASSPATH=%CLASSPATH% set CLASSPATH= for %%i in (..\..\lib\endorsed\*.jar) do call appendcp.bat %%i echo Using classpath: "%CLASSPATH%" call %ANT_HOME%\bin\ant -emacs %1 %2 %3 %4 %5 %6 %7 %8 %9 set ANT_HOME=%OLD_ANT_HOME% set CLASSPATH=%OLD_CLASSPATH%
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. set OLD_ANT_HOME=%ANT_HOME% set ANT_HOME=..\..\tools\ant set OLD_CLASSPATH=%CLASSPATH% set CLASSPATH= for %%i in (..\..\lib\endorsed\*.jar) do call appendcp.bat %%i echo Using classpath: "%CLASSPATH%" call %ANT_HOME%\bin\ant -emacs %1 %2 %3 %4 %5 %6 %7 %8 %9 set ANT_HOME=%OLD_ANT_HOME% set CLASSPATH=%OLD_CLASSPATH%
Move the @echo line above license header so it is not echoed to command line. Thanks to Vincent Siveton FOR-1021
Move the @echo line above license header so it is not echoed to command line. Thanks to Vincent Siveton FOR-1021 git-svn-id: 36dcc065b18e9ace584b1c777eaeefb1d96b1ee8@555984 13f79535-47bb-0310-9956-ffa450edef68
Batchfile
apache-2.0
apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest,apache/forrest
20de8480b28dae6169560198596039fffaa1185a
configure.bat
configure.bat
@rem Run CMake, pointing to sibling directories containing dependencies. @rem Note that zmq and cppzmq are relative to the source dir, while @rem protobuf is relative to the build dir. Not sure why. @set build_type=Release @if not "%1"=="" set build_type=%1 @echo Configuring for build type %build_type% cmake -DZeroMQ_ROOT_DIR="..\ZeroMQ 3.2.4" -DPROTOBUF_SRC_ROOT_FOLDER="..\..\protobuf-2.6.0-win32-vc12" -DCPPZMQ_HEADER_PATH="..\cppzmq" -DCMAKE_INSTALL_PREFIX="install/%build_type%" -G "NMake Makefiles" -DCMAKE_BUILD_TYPE="%build_type%" .. @if %errorlevel% neq 0 exit /b %errorlevel% @echo Configuration complete. To build, run `nmake`
@rem Run CMake, pointing to sibling directories containing dependencies. @rem Note that zmq and cppzmq are relative to the source dir, while @rem protobuf is relative to the build dir. Not sure why. @set build_type=Release @if not "%1"=="" set build_type=%1 @set build_bitness=32 @if not "%2"=="" set build_bitness=%2 @echo Configuring for build type %build_type% for %build_bitness% bits cmake -DZeroMQ_ROOT_DIR="..\ZeroMQ 3.2.4" -DPROTOBUF_SRC_ROOT_FOLDER="..\..\protobuf-2.6.0-win%build_bitness%-vc12" -DCPPZMQ_HEADER_PATH="..\cppzmq" -DCMAKE_INSTALL_PREFIX="install/%build_type%" -G "NMake Makefiles" -DCMAKE_BUILD_TYPE="%build_type%" .. @if %errorlevel% neq 0 exit /b %errorlevel% @echo Configuration complete. To build, run `nmake`
Use second parameter to define bitness
Use second parameter to define bitness --HG-- branch : parametrize_configure
Batchfile
apache-2.0
j-rivero/ign-transport-git,j-rivero/ign-transport-git,j-rivero/ign-transport-git,j-rivero/ign-transport-git
78ab08770b5135c8f2aa42cdd7f5e92c300db74b
build-ci.cmd
build-ci.cmd
REM other targets are: REM 'build' REM 'test' REM 'test-integration' tools\nant\bin\nant.exe -f:Common.Logging.build build
REM other targets are: REM 'build' REM 'test' REM 'test-integration' tools\nant\bin\nant.exe -f:Common.Logging.build test-integration
Revert "setting ci build script to only compile as CI box will scan and run tests independently"
Revert "setting ci build script to only compile as CI box will scan and run tests independently" This reverts commit a74c5612fcccaa3779ee262d1f1fc48238502b97.
Batchfile
apache-2.0
ajayanandgit/common-logging,tablesmit/common-logging,xlgwr/common-logging,net-commons/common-logging,Moily/common-logging,meixger/common-logging,net-commons/common-logging
a5a2687b7b6a032b31e2b63c4c58aab3987421b3
Makefile.bat
Makefile.bat
@ECHO OFF :args IF NOT "%1"=="" ( call :%1 SHIFT GOTO args ) GOTO :EOF :releases call :pre_build call :build grunt :pre_build mkdir build :build cp -R src/* build call :build_server call :build_viewer cd build npm install cd .. :build_server npm install GochoMugo/docvy-server#develop mv node_modules/docvy-server build/server :build_viewer npm install GochoMugo/docvy-viewer#develop mv node_modules/docvy-viewer build/viewer :src call :src_viewer call :src_server :src_viewer mklink src\viewer ..\..\docvy-viewer\dist :src_server mklink /d src\server ..\..\docvy-server
REM This batch script is an effort at porting the Unix Makefile for REM Windows. Therefore, it may not be updated as frequent as the Unix REM Makefile. (Please consider helping us keeping it up to date) @ECHO OFF :args IF NOT "%1"=="" ( call :%1 SHIFT GOTO args ) GOTO :EOF :releases call :pre_build call :build grunt :pre_build mkdir build :build cp -R src/* build call :build_server call :build_viewer cd build npm install cd .. :build_server npm install GochoMugo/docvy-server#develop mv node_modules/docvy-server build/server :build_viewer npm install GochoMugo/docvy-viewer#develop mv node_modules/docvy-viewer build/viewer :src call :src_viewer call :src_server :src_viewer mklink src\viewer ..\..\docvy-viewer\dist :src_server mklink /d src\server ..\..\docvy-server
Add note about updates to the Windows build script
Add note about updates to the Windows build script
Batchfile
mit
docvy/app,docvy/app,docvy/app
8f68f3b8d5c3413d5054eefc049866f55abe851e
bin/feed_archive.bat
bin/feed_archive.bat
@echo off set PYTHONPATH=%CD% C:\Python27\python.exe feed_archive\feed_archive.py %*
@echo off set PYTHONPATH=%CD% python feed_archive\feed_archive.py %*
Replace absolute path of python
Replace absolute path of python
Batchfile
apache-2.0
mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead
d6cea7d252215163a4af96dbf5882a591c2bd5b6
setup.bat
setup.bat
@PATH=%PATH%;%XIA2_ROOT%\binaries\win32 @PATH=%PATH%;%XIA2_ROOT%\Applications
@PATH=%XIA2_ROOT%\binaries\win32;%PATH% @PATH=%PATH%;%XIA2_ROOT%\Applications
Put win32 binaries at front of path, to pick up scala &c.
Put win32 binaries at front of path, to pick up scala &c.
Batchfile
bsd-3-clause
xia2/xia2,xia2/xia2
60d23651964e8b30d599bd69e7306c6a855af11c
ci/scripts/build-project-windows.bat
ci/scripts/build-project-windows.bat
SET "JAVA_HOME=C:\opt\jdk1.8.0_161" cd git-repo ./mvnw clean install -X
SET "JAVA_HOME=C:\opt\jdk-8" cd git-repo ./mvnw clean install -X
Fix location of java home for windows build
Fix location of java home for windows build See gh-865
Batchfile
apache-2.0
snicoll/initializr,snicoll/initializr,snicoll/initializr,spring-io/initializr,spring-io/initializr,spring-io/initializr
5900171ca5fdaf9a8625d0ef5dd27f6532d9a442
devtools/win-install-coreclr.cmd
devtools/win-install-coreclr.cmd
rem from https://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-asp-net-5-from-the-command-line rem install .NET version manager (DNVM) @powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}" rem install .NET execution environment (DNX) for coreclr dnvm upgrade -r coreclr pause
rem from https://docs.asp.net/en/latest/getting-started/installing-on-windows.html#install-asp-net-5-from-the-command-line rem install .NET version manager (DNVM) @powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}" rem install .NET execution environment (DNX) for coreclr dnvm upgrade -r coreclr pause
Fix missing newline at EOF.
Fix missing newline at EOF.
Batchfile
apache-2.0
JeroMiya/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,JeroMiya/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,OSVR/OSVR-Config,JeroMiya/OSVR-Config,JeroMiya/OSVR-Config
1412324a267658efd571e363e39d4330c8993edb
scripts/slave/drmemory/build_env.bat
scripts/slave/drmemory/build_env.bat
:: Sets up the environment for use with MSVS tools and CMake. @echo off setlocal :: cmd for loops are really hard, so I hardcoded the list of MSVS paths. set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars :found_vcvars call %vcvars% :: Add the normal CMake install path. set PATH=%PROGRAMFILES%\CMake 2.8\bin;%PATH% echo Final PATH: echo %PATH% %*
:: Sets up the environment for use with MSVS tools and CMake. @echo off setlocal :: cmd for loops are really hard, so I hardcoded the list of MSVS paths. set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars :: VS 2008 vcvars isn't standalone, it needs this env var. set VS90COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 9.0\Common7\Tools\ set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" if exist %vcvars% goto found_vcvars :found_vcvars call %vcvars% :: Add the normal CMake install path. set PATH=%PROGRAMFILES%\CMake 2.8\bin;%PATH% echo Final PATH: echo %PATH% %*
Fix drmemory build environment wrapper for VS 2008
Fix drmemory build environment wrapper for VS 2008 vcvars32.bat isn't totally standalone, it wants this VSCOMNTOOLS variable set up for it. TBR=nsylvain@chromium.org BUG=154895 Review URL: https://codereview.chromium.org/11186003 git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@162191 0039d316-1c4b-4281-b951-d872f2087c98
Batchfile
bsd-3-clause
eunchong/build,eunchong/build,eunchong/build,eunchong/build
36e7e12963728efe69fa90a1ec0e877642cdb333
libexec/rbenv_register.cmd
libexec/rbenv_register.cmd
:: Add a new Ruby version to rbenv @ setlocal EnableDelayedExpansion @ call "%~dp0common_vars.cmd" @reg add "HKCR\.rb" /ve /t REG_SZ /d "RubyFile" /f > NUL @reg add "HKCR\RubyFile" /ve /t REG_SZ /d "Ruby File" /f > NUL @reg add "HKCR\RubyFile\DefaultIcon" /ve /t REG_SZ /d "%RBENV_ROOT%\resources\ruby.ico" /f > NUL @reg add "HKCR\RubyFile\shell\open\command" /ve /t REG_SZ /d "\"%RBENV_ROOT%\shims\ruby.cmd\" \"%%1\" %%*" /f > NUL @ echo(Ruby files are now associated with rbenv-cmd. @ exit /b 0
:: Add a new Ruby version to rbenv @ setlocal EnableDelayedExpansion @ call "%~dp0common_vars.cmd" @reg add "HKCR\.rb" /ve /t REG_SZ /d "RubyFile" /f > NUL @reg add "HKCR\RubyFile" /ve /t REG_SZ /d "Ruby File" /f > NUL @reg add "HKCR\RubyFile\DefaultIcon" /ve /t REG_SZ /d "%RBENV_ROOT%\resources\ruby.ico" /f > NUL @reg add "HKCR\RubyFile\shell\open\command" /ve /t REG_SZ /d "\"%RBENV_ROOT%\libexec\rbenv_exec.cmd\" \"%%1\" %%*" /f > NUL @ echo(Ruby files are now associated with rbenv-cmd. @ exit /b 0
Change register to use rbenv exec instead of Ruby shim
Change register to use rbenv exec instead of Ruby shim
Batchfile
mit
genezys/rbenv-cmd,genezys/rbenv-cmd
3e8fbd99451bedb3af621ec6487207a7ac024b5b
scripts/test_native_code.bat
scripts/test_native_code.bat
@echo off setlocal EnableDelayedExpansion echo Test discovery started... dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt echo Testing (Google Test)... set failures=0 FOR /F %%i IN (__tmp_gtest.txt) DO ( echo %%i %%i --gtest_output="xml:%%i.xml" powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName %%i.xml IF %ERRORLEVEL% NEQ 0 ( set /A failures=%failures%+1 ) ) del __tmp_gtest.txt EXIT /B %failures%
@echo off setlocal EnableDelayedExpansion echo Test discovery started... dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt echo Testing (Google Test)... set failures=0 FOR /F %%i IN (__tmp_gtest.txt) DO ( echo %%i %%i --gtest_output="xml:%%i.xml" IF %ERRORLEVEL% NEQ 0 ( set /A failures=%failures%+1 ) powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName %%i.xml ) del __tmp_gtest.txt EXIT /B %failures%
Solve problem of non-failing native tests
Solve problem of non-failing native tests
Batchfile
apache-2.0
spectre-team/spectre,spectre-team/spectre,mg6/spectre,mg6/spectre,spectre-team/spectre,mg6/spectre
db75a4a6c03ae191ee17c472836c58bddbecf731
apm-collector/apm-collector-boot/bin/collectorService.bat
apm-collector/apm-collector-boot/bin/collectorService.bat
@echo off setlocal set COLLECTOR_PROCESS_TITLE=Skywalking-Collector set COLLECTOR_HOME=%~dp0%.. set COLLECTOR_OPTS="-Xms256M -Xmx512M -Dcollector.logDir=%COLLECTOR_HOME%\logs" set CLASSPATH=%COLLECTOR_HOME%\config;.; set CLASSPATH=%COLLECTOR_HOME%\libs\*;%CLASSPATH% if defined JAVA_HOME ( set _EXECJAVA="%JAVA_HOME:"=%"\bin\java ) if not defined JAVA_HOME ( echo "JAVA_HOME not set." set _EXECJAVA=java ) start "%COLLECTOR_PROCESS_TITLE%" %_EXECJAVA% "%COLLECTOR_OPTS%" -cp "%CLASSPATH%" CollectorBootStartUp endlocal
@echo off setlocal set COLLECTOR_PROCESS_TITLE=Skywalking-Collector set COLLECTOR_HOME=%~dp0%.. set COLLECTOR_OPTS="-Xms256M -Xmx512M -Dcollector.logDir=%COLLECTOR_HOME%\logs" set CLASSPATH=%COLLECTOR_HOME%\config;.; set CLASSPATH=%COLLECTOR_HOME%\libs\*;%CLASSPATH% if defined JAVA_HOME ( set _EXECJAVA="%JAVA_HOME:"=%"\bin\java ) if not defined JAVA_HOME ( echo "JAVA_HOME not set." set _EXECJAVA=java ) start "%COLLECTOR_PROCESS_TITLE%" %_EXECJAVA% "%COLLECTOR_OPTS%" -cp "%CLASSPATH%" org.apache.skywalking.apm.collector.boot.CollectorBootStartUp endlocal
Fix issue that collector start failed in the Windows environment
[Collector] Fix issue that collector start failed in the Windows environment
Batchfile
apache-2.0
apache/skywalking,apache/skywalking,hanahmily/sky-walking,ascrutae/sky-walking,OpenSkywalking/skywalking,apache/skywalking,ascrutae/sky-walking,ascrutae/sky-walking,ascrutae/sky-walking,apache/skywalking,apache/skywalking,OpenSkywalking/skywalking,apache/skywalking,apache/skywalking,hanahmily/sky-walking
77128c620390d4c8d0d8ca88d7be5b7fa9fac963
build.cmd
build.cmd
@ECHO OFF REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`. setlocal set PATH=%PATH%;tools\NuGet nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages nuget install FSharp.Compiler.Tools -nocache -version 4.0.1.21 -excludeVersion -o tools/packages tools\packages\FSharp.Compiler.Tools\tools\fsi.exe --exec build.fsx %*
@ECHO OFF REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`. setlocal set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\4.0\Framework\v4.0 set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\4.0\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;tools\NuGet nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages fsi.exe --exec build.fsx %*
Revert using fsi from FSharp.Compiler.Tools
Revert using fsi from FSharp.Compiler.Tools
Batchfile
apache-2.0
intellifactory/websharper.ui.next,intellifactory/websharper.ui.next,intellifactory/websharper.ui.next
361ea071e5128777a0e4f31f7ad43fee877c72b8
build.cmd
build.cmd
mkdir bin ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule csc /t:library /debug /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs csc /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
mkdir bin ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule csc /t:library /debug /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs csc /debug /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
Build tests w/ debugging symbols
Build tests w/ debugging symbols
Batchfile
mit
adamsitnik/slice.net,kurtschelfthout/slice.net,joeduffy/slice.net
99d23f62a22a98e8c3db7a16942d05909e959a56
tools/release_win.bat
tools/release_win.bat
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
Add Program Files\7-Zip to path
Add Program Files\7-Zip to path
Batchfile
apache-2.0
thiagomagero/namebench,DanielAttia/namebench,kiseok7/namebench,Max-Vader/namebench,cloudcache/namebench,xeoron/namebench,HerlonNascimento/namebench,perrytm/namebench,seshin/namebench,siripuramrk/namebench,Spindletop16/namebench,vishnunuk/namebench,felipsmartins/namebench,MicroWorldwide/namebench,Jeff-Lewis/namebench,ajs124/namebench,Hazer/namebench,kevinxw/namebench,when30/namebench,RomanHargrave/namebench,antar2801/namebench,mystique1029/namebench,leeoo/namebench,tectronics/namebench,jaded44/namebench,etxc/namebench,edmilson19/namebench,yiyuandao/namebench,wa111/namebench,kristi29091988/namebench,manaure/namebench,LegitSavage/namebench,ItsAGeekThing/namebench,nadeemat/namebench,dimazalfrianz/namebench,donavoncade/namebench,hitrust/namebench,alebcay/namebench,takuya/namebench,palimadra/namebench,Xeleste/namebench,skuarch/namebench,doadin/namebench,doantranhoang/namebench,stefrobb/namebench,cyranodb/namebench,sund/namebench,PyroShark/namebench,Trinitaria/namebench,unreal666/namebench,xubayer786/namebench,trulow/namebench,AgentN/namebench,erasilva/namebench,hwuiwon/namebench,richardgroves/namebench,crocleco/namebench,thanhuwng/namebench,Ritvik1512/namebench,jaechankim/namebench,el-lumbergato/namebench,pacav69/namebench,souzainf3/namebench,ZuluPro/namebench,alexlovelltroy/namebench,chosen1/namebench,michaeldavidcarr/namebench,eladelad/namebench,tcffisher/namebench,santoshsahoo/namebench,asolfre/namebench,edumatos/namebench,corruptnova/namebench,mspringett/namebench,benklaasen/namebench,hypnotika/namebench,llaera/namebench,FatBumbleee/namebench,TheNite/namebench,21winner/namebench,nt1st/namebench,rubasben/namebench,xxhank/namebench,webhost/namebench,bluemask2001/namebench,danieljl/namebench,AdamHull/namebench,MarnuLombard/namebench,watchamakulit02/namebench,Kudeshido/namebench,deepak5/namebench,chamakov/namebench,ulaskaraoren/namebench,cvanwie/namebench,CookiesandCake/namebench,nishad/namebench,BeZazz/lamebench,jlobaton/namebench,petabytekr/namebench,renatogames2/namebench,iamang/namebench,Jasoning/namebench,techsd/namebench,cah0211/namebench,gavinfaux/namebench,ajitsonlion/namebench,GLMeece/namebench,jtrag/namebench,tushevorg/namebench,melissaihrig/namebench,RichardWilliamPearse/namebench,lukasfenix/namebench,MANICX100/namebench,rosemead/namebench,TorpedoXL/namebench,renanrodm/namebench,arjun372/namebench,jjoaonunes/namebench,aman-tugnawat/namebench,hashem78/namebench,AViisiion/namebench,thatchristoph/namebench,KibaAmor/namebench,repomain/namebench,isoriss123/namebench,CrazeeIvan/namebench,uwevil/namebench,accomac/namebench,jakeylube95/namebench,feardax/namebench,jackjshin/namebench,phy0/namebench,pombreda/namebench,Bandito43/namebench,teknix/namebench,wluizguedes/namebench,illAdvised/namebench,antsant/namebench,movermeyer/namebench,deeb230/namebench,beermix/namebench,cartersgenes/namebench,Arrowofdarkness/namebench,bgammill/namebench,KingPsychopath/namebench,evelynmitchell/namebench,razrichter/namebench,woozzoom/namebench,LavyshAlexander/namebench,ran0101/namebench,fbidu/namebench,omerhasan/namebench,sbalun/namebench,dsjr2006/namebench,ericmckean/namebench,imranrony/namebench,ronzohan/namebench,jevgen/namebench,gdbdzgd/namebench,fevangelou/namebench,jimb0616/namebench,rbenjamin/namebench,edesiocs/namebench,sushifant/namebench,qbektrix/namebench,pyshcoder/namebench,shannonjlove/namebench,Forgen/namebench,snailbob/namebench
bd0467b4071c7127df2d555dfe4a9dddf0001aa9
build_java_executor.bat
build_java_executor.bat
cd %~dp0java_executor del /s /q objs rmdir objs md objs cd src javac -d ..\objs ca\dmoj\java\*.java cd ..\objs del ..\..\executors\java_executor.jar jar cmf ..\src\META-INF\MANIFEST.MF ..\..\executors\java_executor.jar ca\dmoj\java\*.class
cd %~dp0java_executor del /s /q objs rmdir objs md objs cd src javac -source 1.7 -target 1.7 -d ..\objs ca\dmoj\java\*.java cd ..\objs del ..\..\executors\java_executor.jar jar cmf ..\src\META-INF\MANIFEST.MF ..\..\executors\java_executor.jar ca\dmoj\java\*.class
Build for 1.7 even with 1.8 javac
Build for 1.7 even with 1.8 javac
Batchfile
agpl-3.0
DMOJ/judge,DMOJ/judge,DMOJ/judge
e917bc85ccb61ff1213b03de2767ee724f5638ff
tools/windows/sign_msi.bat
tools/windows/sign_msi.bat
@echo off set DIST_DIR=dist set CERTIFICATE_PATH="%USERPROFILE%\certificates\nuxeo.com.pfx" set MSI_PROGRAM_NAME="Nuxeo Drive" set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL% set VERIFY_CMD=signtool verify /v /pa FOR %%F IN (%DIST_DIR%\*.msi) DO ( echo --------------------------------------------- echo Signing %%F echo --------------------------------------------- echo %SIGN_CMD% %%F %SIGN_CMD% %%F echo --------------------------------------------- echo Verifying %%F echo --------------------------------------------- echo %VERIFY_CMD% %%F %VERIFY_CMD% %%F )
@echo off set DIST_DIR=dist set CERTIFICATE_PATH="%USERPROFILE%\certificates\nuxeo.com.pfx" set PFX_PASSWORD="" set MSI_PROGRAM_NAME="Nuxeo Drive" set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /p %PFX_PASSWORD% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL% set VERIFY_CMD=signtool verify /v /pa FOR %%F IN (%DIST_DIR%\*.msi) DO ( echo --------------------------------------------- echo Signing %%F echo --------------------------------------------- echo %SIGN_CMD% %%F %SIGN_CMD% %%F echo --------------------------------------------- echo Verifying %%F echo --------------------------------------------- echo %VERIFY_CMD% %%F %VERIFY_CMD% %%F )
Add PFX certificate password option when signing msi
NXP-12981: Add PFX certificate password option when signing msi
Batchfile
lgpl-2.1
ssdi-drive/nuxeo-drive,IsaacYangSLA/nuxeo-drive,DirkHoffmann/nuxeo-drive,ssdi-drive/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,ssdi-drive/nuxeo-drive,arameshkumar/nuxeo-drive,rsoumyassdi/nuxeo-drive,DirkHoffmann/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,loopingz/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/nuxeo-drive,DirkHoffmann/nuxeo-drive,rsoumyassdi/nuxeo-drive,rsoumyassdi/nuxeo-drive,loopingz/nuxeo-drive,DirkHoffmann/nuxeo-drive,loopingz/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/nuxeo-drive,loopingz/nuxeo-drive,rsoumyassdi/nuxeo-drive,loopingz/nuxeo-drive,arameshkumar/base-nuxeo-drive,arameshkumar/base-nuxeo-drive,DirkHoffmann/nuxeo-drive,arameshkumar/nuxeo-drive
6a8382c1e7db41398e0ac2a703289ae481e32bd0
auto_backup/auto_backup.cmd
auto_backup/auto_backup.cmd
robocopy C:\Users\user\Documents F:\Backup\Documents /MIR /DCOPY:T /xj /np /tee /log:backup_log.txt robocopy C:\Users\user\Pictures F:\Backup\Pictures /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt robocopy C:\Users\user\Music F:\Backup\Music /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt robocopy C:\Users\user\Downloads F:\Backup\Downloads /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt pause
robocopy "C:\Users\user\Documents" "F:\Backup\Documents" /MIR /DCOPY:T /xj /np /tee /log:backup_log.txt robocopy "C:\Users\user\Pictures" "F:\Backup\Pictures" /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt robocopy "C:\Users\user\Music" "F:\Backup\Music" /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt robocopy "C:\Users\user\Downloads" "F:\Backup\Downloads" /MIR /DCOPY:T /xj /np /tee /log+:backup_log.txt pause
Add quotation around dir path.
Add quotation around dir path.
Batchfile
apache-2.0
shianchin/mini_projects,shianchin/mini_projects,shianchin/mini_projects
f78d776f8a683826b955d1da5d7719937d272e90
slave/run_slave.bat
slave/run_slave.bat
@echo off setlocal title Build slave if not exist %~dp0..\..\depot_tools\. ( echo You must put a copy of depot_tools in %~dp0..\depot_tools goto :EOF ) set PATH=%~dp0..\..\depot_tools;%PATH% cd /d %~dp0 :: Running it once will make sure svn and python were downloaded. call gclient.bat > nul :: run_slave.py will overwrite the PATH and PYTHONPATH environment variables. python %~dp0\run_slave.py --no_save -y buildbot.tac %*
@echo off setlocal title Build slave if not exist %~dp0..\..\depot_tools\. ( echo You must put a copy of depot_tools in %~dp0..\depot_tools goto :EOF ) set PATH=%~dp0..\..\depot_tools;%PATH% cd /d %~dp0 :: Running it once will make sure svn and python were downloaded. call gclient.bat > nul :: run_slave.py will overwrite the PATH and PYTHONPATH environment variables. python %~dp0\run_slave.py --no_save -y buildbot.tac --logfile=twistd.log %*
Write twistd.log files on Windows
Write twistd.log files on Windows That will simplify debugging Buildbot slave process on Windows, plus will also enable sending those logs to the Cloud. BUG=492404 R=dsansome@chromium.org, iannucci@chromium.org Review URL: https://codereview.chromium.org/1415523007 . git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@297361 0039d316-1c4b-4281-b951-d872f2087c98
Batchfile
bsd-3-clause
eunchong/build,eunchong/build,eunchong/build,eunchong/build
ce768b670860a6bd6a83d16ea6137e0fcb0df5df
js.build.bat
js.build.bat
"C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^ --js=misc.js ^ --js=siggy.js ^ --js=siggy.helpers.js ^ --js=siggy.static.js ^ --js=siggy.intel.dscan.js ^ --js=siggy.intel.poses.js ^ --js=siggy.charactersettings.js ^ --js=siggy.notifications.js ^ --js=siggy.timer.js ^ --js=siggy.sigtable.js ^ --js=siggy.globalnotes.js ^ --js=siggy.map.connection.js ^ --js=siggy.hotkeyhelper.js ^ --js=siggy.map.js ^ --js=siggy.activity.siggy.js ^ --js=siggy.activity.scannedsystems.js ^ --js=siggy.activity.search.js ^ --js=siggy.activity.thera.js ^ --js=siggy.activity.notifications.js ^ --js=siggy.activity.astrolabe.js ^ --js=siggy.activity.chainmap.js ^ --source_map_format=V3 ^ --create_source_map siggy.compiled.js.map ^ --js_output_file=siggy.compiled.js echo //# sourceMappingURL=siggy.compiled.js.map >> siggy.compiled.js @pause
java.exe -jar compiler.jar ^ --js=misc.js ^ --js=siggy.js ^ --js=siggy.helpers.js ^ --js=siggy.static.js ^ --js=siggy.intel.dscan.js ^ --js=siggy.intel.poses.js ^ --js=siggy.charactersettings.js ^ --js=siggy.notifications.js ^ --js=siggy.timer.js ^ --js=siggy.sigtable.js ^ --js=siggy.globalnotes.js ^ --js=siggy.map.connection.js ^ --js=siggy.hotkeyhelper.js ^ --js=siggy.map.js ^ --js=siggy.activity.siggy.js ^ --js=siggy.activity.scannedsystems.js ^ --js=siggy.activity.search.js ^ --js=siggy.activity.thera.js ^ --js=siggy.activity.notifications.js ^ --js=siggy.activity.astrolabe.js ^ --js=siggy.activity.chainmap.js ^ --source_map_format=V3 ^ --create_source_map siggy.compiled.js.map ^ --js_output_file=siggy.compiled.js echo //# sourceMappingURL=siggy.compiled.js.map >> siggy.compiled.js @pause
Use java instead of full path
Use java instead of full path
Batchfile
mit
marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy
3fcadc4815a4b1cb540f0789b984bffce87f4e3f
test/runtests.bat
test/runtests.bat
@ECHO OFF REM compile the code into the bin folder javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java REM run the program, feed commands from input.txt file and redirect the output to the actual.txt java -classpath ..\bin seedu.addressbook.Main < input.txt > actual.txt REM compare the output to the expected output FC actual.txt expected.txt
@ECHO OFF REM create bin directory if it doesn't exist if not exist ..\bin mkdir ..\bin REM delete output from previous run del actual.txt REM compile the code into the bin folder javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java REM run the program, feed commands from input.txt file and redirect the output to the actual.txt java -classpath ..\bin seedu.addressbook.Main < input.txt > actual.txt REM compare the output to the expected output FC actual.txt expected.txt
Update test script to clean up at start
Update test script to clean up at start
Batchfile
mit
imhongw/addressbook-level2,mingruimingrui/addressbook-level2,cheec/addressbook-level2,zachylimwl/addressbook-level2,mingruimingrui/addressbook-level2,cheec/addressbook-level2,se-edu/addressbook-level2,se-edu/addressbook-level2,zachylimwl/addressbook-level2,imhongw/addressbook-level2
43990ca1c9e09a5cbdef537a0a3dd45b647c7153
test.bat
test.bat
setlocal cd %~dp0 set path=%path;%C:\Users\marco\OneDrive\Documents\PROJECTS\ThirdParties\vtk_installRelease\bin "C:\Users\marco\OneDrive\Documents\PROJECTS\polytriagnulation\out\Unittests\Release\unittests.exe"
setlocal cd %~dp0 set path=%path;%C:\Users\marco\OneDrive\Documents\PROJECTS\ThirdParties\vtk_installRelease\bin call "C:\Users\marco\OneDrive\Documents\PROJECTS\polytriagnulation\out\Unittests\Release\unittests.exe" pause
Test run via bat file.
Test run via bat file.
Batchfile
apache-2.0
marcomanno/polygon_triangulation,marcomanno/polygon_triangulation
be8e6a946151e93ef0b2a19048b80caa6deefc36
Kudu.Services.Web/updateNodeModules.cmd
Kudu.Services.Web/updateNodeModules.cmd
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/f1f26085d54438c5a3eb951baba56fc0db8f90eb IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/93edfcb6e9c75d395e805825f5051e707bd50bb8 IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
Update to use KuduScript 1.0.4
Update to use KuduScript 1.0.4
Batchfile
apache-2.0
sitereactor/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,projectkudu/kudu,sitereactor/kudu,puneet-gupta/kudu,projectkudu/kudu,sitereactor/kudu,badescuga/kudu,juvchan/kudu,juvchan/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,shibayan/kudu,puneet-gupta/kudu,projectkudu/kudu,badescuga/kudu,EricSten-MSFT/kudu,shibayan/kudu,puneet-gupta/kudu,badescuga/kudu,sitereactor/kudu,projectkudu/kudu,badescuga/kudu,juvchan/kudu,shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,badescuga/kudu,juvchan/kudu,sitereactor/kudu,juvchan/kudu
818ca3deaf21d6e86976646df56f9d326ac39ccd
docfx/build-site.cmd
docfx/build-site.cmd
choco install docfx -y choco update docfx -y docfx docfx\docfx.json del docs /s /q REM the CNAME file is generated in the doc folder when added through the github REM settings page. Apparently github uses this file to determine the custom REM domain. The line above deletes the whole docs folder so we need to copy it REM from the docfx folder. If we ever want to change the custom domain settings REM we need to alter the docfx\CNAME file and not use the github settings page. copy docfx\CNAME docs /Y xcopy docfx\_site docs /E /Y
choco install docfx -y choco upgrade docfx -y docfx docfx\docfx.json del docs /s /q REM the CNAME file is generated in the doc folder when added through the github REM settings page. Apparently github uses this file to determine the custom REM domain. The line above deletes the whole docs folder so we need to copy it REM from the docfx folder. If we ever want to change the custom domain settings REM we need to alter the docfx\CNAME file and not use the github settings page. copy docfx\CNAME docs /Y xcopy docfx\_site docs /E /Y
Use choco upgrade iso update
Use choco upgrade iso update
Batchfile
mit
charlenni/Mapsui,charlenni/Mapsui,pauldendulk/Mapsui
00cb8d878ba3359820a36b18b98af928b041eae4
src/Main/PublishNugetPackage.cmd
src/Main/PublishNugetPackage.cmd
@echo off echo Press any key to publish pause ".nuget\NuGet.exe" push Rssdp.2.0.0.1.nupkg pause
@echo off echo Press any key to publish pause ".nuget\NuGet.exe" push Rssdp.2.0.0.2.nupkg pause
Update publish bat for new release.
Update publish bat for new release.
Batchfile
mit
Yortw/RSSDP,stickybun/RSSDP,Yortw/RSSDP
37d16272fd55a2d62fff935c9370661ead03efb3
ci/jenkins.cmd
ci/jenkins.cmd
@ECHO OFF SET BASEDIR=%~dp0.. SET USERINI=%BASEDIR%\user.ini FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do ( set CF_USER=%%a set CF_PASS=%%b ) SET MAVEN_HOME=C:\opt\apache\apache-maven-3.5.3 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% SET PATH=%MAVEN_HOME%\bin;%PATH% CALL %BASEDIR%\test-setup CALL %BASEDIR%\test-run %*
@ECHO OFF SET BASEDIR=%~dp0.. SET USERINI=%BASEDIR%\user.ini FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do ( set CF_USER=%%a set CF_PASS=%%b ) SET PYTHON_HOME=C:\Python36 SET MAVEN_HOME=C:\opt\apache\apache-maven-3.3.9 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% SET PATH=%PYTHON_HOME%\Scripts;%MAVEN_HOME%\bin;%PATH% CALL %BASEDIR%\test-setup CALL %BASEDIR%\test-run %*
Update paths to Python and Maven
Update paths to Python and Maven
Batchfile
apache-2.0
SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples
75d4e7561b5de0f9311b524e0b8f1b8ddca03c33
script/bin/bolt.bat
script/bin/bolt.bat
@echo off setlocal enableextensions set base=%~dp0 for %%i in (node.bat node.exe) do if not "%%~$PATH:i"=="" set node=%%~$PATH:i if "%node%"=="" echo error: node.js is not on the system path && exit /b 1 "%node%" "%base%bolt.js" %*
@echo off setlocal enableextensions set base=%~dp0 for %%i in (node.bat node.exe) do if not "%%~$PATH:i"=="" set node=%%~$PATH:i if "%node%"=="" echo error: node.js is not on the system path && exit /b 1 "%node%" "%base%bolt.js" %*
Convert windows batch script to use windows line endings.
Convert windows batch script to use windows line endings.
Batchfile
bsd-3-clause
boltjs/bolt,boltjs/bolt,boltjs/bolt,boltjs/bolt
148a5cff3165bccbd90b849e518e59dfccd0dd35
bootstrap.bat
bootstrap.bat
@echo off pushd %cd% %~d0 cd %~dp0 echo Temporarily changing directory to %~dp0 if exist %USERPROFILE%\_vimrc goto GVIMRC echo Installing _vimrc echo set rtp+=%CD%\vim> %USERPROFILE%\_vimrc echo source %CD%\vim\vimrc >> %USERPROFILE%\_vimrc :GVIMRC echo Installing _gvimrc if exist %USERPROFILE%\_gvimrc goto END echo source %CD%\vim\gvimrc > %USERPROFILE%\_gvimrc :END popd
@echo off pushd %cd% %~d0 cd %~dp0 echo Temporarily changing directory to %~dp0 if exist %USERPROFILE%\_vimrc goto GVIMRC echo Installing _vimrc echo set rtp+=%CD%\vim> %USERPROFILE%\_vimrc echo source %CD%\vim\vimrc >> %USERPROFILE%\_vimrc :GVIMRC if exist %USERPROFILE%\_gvimrc goto END echo Installing _gvimrc echo source %CD%\vim\gvimrc > %USERPROFILE%\_gvimrc :END popd
Move gvimrc log message so it doesn't print unnecessarily.
Move gvimrc log message so it doesn't print unnecessarily.
Batchfile
mit
tomku/dotfiles,tomku/dotfiles,tomku/dotfiles
d04cfe7bb5ecc375c921285e78576574e5326c1a
node/test.bat
node/test.bat
call :test 4.7.2 call :test 6.9.4 call :test 7.4.0 goto :eof :test setlocal docker run node:%1 node --version docker run node:%1-nano node --version
call :test 4.7.2 call :test 6.9.4 call :test 7.4.0 goto :eof :test setlocal docker run node:%1 node --version docker run node:%1 npm --version docker run node:%1-nano node --version docker run node:%1-nano npm --version
Test npm version, just rebuild with 693
Test npm version, just rebuild with 693
Batchfile
mit
StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows,StefanScherer/dockerfiles-windows
c9d87214a3574665e5e085b94ddbee00e7a52f00
vim/setup.bat
vim/setup.bat
@echo off if not defined HOME ( echo ‹ϐ HOME `Ă܂ echo ‹ϐ HOME _vimrc zu邽߂̃fBNgpXݒ肵Ă exit /b ) set MY_DIR=%~dp0 @echo on echo source %MY_DIR%vimrc >> %HOME%\_vimrc echo source %MY_DIR%gvimrc >> %HOME%\_gvimrc
@echo off if not defined HOME ( echo ‹ϐ HOME `Ă܂ echo ‹ϐ HOME _vimrc zu邽߂̃fBNgpXݒ肵Ă exit /b ) set MY_DIR=%~dp0 @echo on echo source %MY_DIR%vimrc >> %HOME%\_vimrc echo source %MY_DIR%gvimrc >> %HOME%\_gvimrc mkdir %HOME%\temp\vim_backup
Make temp directory in HOME
Make temp directory in HOME
Batchfile
mit
maku77/dotfiles,maku77/dotfiles,maku77/dotfiles,maku77/dotfiles
35ae17da45d6ef0f6b037c8f328ec9b13839789e
public/js/js.build.bat
public/js/js.build.bat
"C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^ --js=misc.js ^ --js=siggy.js ^ --js=siggy.helpers.js ^ --js=siggy.static.js ^ --js=siggy.intel.dscan.js ^ --js=siggy.intel.poses.js ^ --js=siggy.charactersettings.js ^ --js=siggy.notifications.js ^ --js=siggy.timer.js ^ --js=siggy.sigtable.js ^ --js=siggy.globalnotes.js ^ --js=siggy.map.connection.js ^ --js=siggy.hotkeyhelper.js ^ --js=siggy.map.js ^ --js=siggy.activity.siggy.js ^ --js=siggy.activity.scannedsystems.js ^ --js=siggy.activity.search.js ^ --js=siggy.activity.thera.js ^ --js=siggy.activity.notifications.js ^ --js=siggy.activity.astrolabe.js ^ --js=siggy.activity.chainmap.js ^ --source_map_format=V3 ^ --create_source_map siggy.compiled.js.map ^ --js_output_file=siggy.compiled.js echo //# sourceMappingURL=siggy.compiled.js.map >> siggy.compiled.js @pause
java.exe -jar compiler.jar ^ --js=misc.js ^ --js=siggy.js ^ --js=siggy.helpers.js ^ --js=siggy.static.js ^ --js=siggy.intel.dscan.js ^ --js=siggy.intel.poses.js ^ --js=siggy.charactersettings.js ^ --js=siggy.notifications.js ^ --js=siggy.timer.js ^ --js=siggy.sigtable.js ^ --js=siggy.globalnotes.js ^ --js=siggy.map.connection.js ^ --js=siggy.hotkeyhelper.js ^ --js=siggy.map.js ^ --js=siggy.activity.siggy.js ^ --js=siggy.activity.scannedsystems.js ^ --js=siggy.activity.search.js ^ --js=siggy.activity.thera.js ^ --js=siggy.activity.notifications.js ^ --js=siggy.activity.astrolabe.js ^ --js=siggy.activity.chainmap.js ^ --source_map_format=V3 ^ --create_source_map siggy.compiled.js.map ^ --js_output_file=siggy.compiled.js echo //# sourceMappingURL=siggy.compiled.js.map >> siggy.compiled.js @pause
Use java instead of full path
Use java instead of full path
Batchfile
mit
marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy
c9a0c55645dbcc601082880eb0f03a508bc67dd1
tools/Windows/Installer/VS2008/MakeBuildX64.bat
tools/Windows/Installer/VS2008/MakeBuildX64.bat
@rem Makes a build directory of the Tundra, so that you can run the NSIS install script @echo off cd ..\..\..\.. rmdir build /S /Q md build copy README.md build copy LICENSE build\LICENSE.txt copy WhatsNew.txt build copy tools\Windows\Installer\VS2008\vcredist_x86.exe build\vcredist.exe copy tools\Windows\Installer\oalinst.exe build copy tools\Windows\Installer\dxwebsetup.exe build xcopy bin\*.* build /S /C /Y :: NOTE! This script only copies content to the build\ folder. If you want to make a full development build with all the content :: in your bin\ directory, run NSIS after running this bat. :: If you want to create an end-user client build, run MakeClean.bat after this, and then run NSIS.
@rem Makes a build directory of the Tundra, so that you can run the NSIS install script @echo off cd ..\..\..\.. rmdir build /S /Q md build copy README.md build copy LICENSE build\LICENSE.txt copy WhatsNew.txt build copy tools\Windows\Installer\VS2008\vcredist_x64.exe build\vcredist.exe copy tools\Windows\Installer\oalinst.exe build copy tools\Windows\Installer\dxwebsetup.exe build xcopy bin\*.* build /S /C /Y :: NOTE! This script only copies content to the build\ folder. If you want to make a full development build with all the content :: in your bin\ directory, run NSIS after running this bat. :: If you want to create an end-user client build, run MakeClean.bat after this, and then run NSIS.
Copy correct version of VS redistributable.
Copy correct version of VS redistributable.
Batchfile
apache-2.0
pharos3d/tundra,jesterKing/naali,BogusCurry/tundra,pharos3d/tundra,realXtend/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,pharos3d/tundra,realXtend/tundra,BogusCurry/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,realXtend/tundra,jesterKing/naali,BogusCurry/tundra,jesterKing/naali,AlphaStaxLLC/tundra,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,pharos3d/tundra,realXtend/tundra,pharos3d/tundra,jesterKing/naali,jesterKing/naali,pharos3d/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra
a106e1d50e9047cafa74c29871413af020e71264
public-events/build.cmd
public-events/build.cmd
@echo off IF NOT EXIST %APPDATA%\npm\tsc.cmd ( ECHO You must have the TypeScript compiler installed. If npm is installed, run ECHO npm install -g typescript GOTO end ) IF EXIST "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" ( CALL "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" -m amd --outDir out\scripts\PublicEvents scripts\PublicEvents\PublicEventsSource.ts ) ELSE ( IF EXIST "%APPDATA%\npm\tsc.cmd" ( CALL %APPDATA%\npm\tsc -m amd --outDir out\scripts\PublicEvents scripts\PublicEvents\PublicEventsSource.ts ) ELSE ( echo TypeScript compiler not installed. ) ) mkdir out COPY main.html out\main.html XCOPY sdk out\sdk\ /r /f /e /c /h /y ECHO. :end
@echo off IF EXIST "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" ( CALL "%ProgramFiles(x86)%\Microsoft SDKs\TypeScript\1.4\tsc.exe" -m amd --outDir out\scripts\PublicEvents scripts\PublicEvents\PublicEventsSource.ts ) ELSE ( IF EXIST "%APPDATA%\npm\tsc.cmd" ( CALL %APPDATA%\npm\tsc -m amd --outDir out\scripts\PublicEvents scripts\PublicEvents\PublicEventsSource.ts ) ELSE ( echo TypeScript compiler not installed. ) ) mkdir out COPY main.html out\main.html XCOPY sdk out\sdk\ /r /f /e /c /h /y ECHO. :end
Remove unnecessary npm tsc check.
Remove unnecessary npm tsc check.
Batchfile
mit
Microsoft/vsts-extension-samples,Microsoft/vso-extension-samples,Microsoft/vso-extension-samples,srdjan-bozovic/vso-extension-samples,Microsoft/vsts-extension-samples,Microsoft/vso-extension-samples,Microsoft/vsts-extension-samples,srdjan-bozovic/vso-extension-samples,srdjan-bozovic/vso-extension-samples
6b6c22ce072bcf71df292ee4a1d2658563a503a5
build.cmd
build.cmd
@echo off setlocal pushd "%~dp0" call :main %* popd goto :EOF :main set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe if not exist "%MSBUILDEXE%" ( echo The .NET Framework 4.0 does not appear to be installed on this echo machine, which is required to build the solution. exit /b 1 ) set EnableNuGetPackageRestore=true for %%s in (src\*.sln) do for %%c in (debug release) do "%MSBUILDEXE%" %%s /p:Configuration=%%c /v:m %*
@echo off setlocal pushd "%~dp0" call :main %* popd goto :EOF :main set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe if not exist "%MSBUILDEXE%" ( echo The .NET Framework 4.0 does not appear to be installed on this echo machine, which is required to build the solution. exit /b 1 ) set EnableNuGetPackageRestore=true call :build Debug && call :build Release goto :EOF :build "%MSBUILDEXE%" src\NCrontab.sln /p:Configuration=%1 /v:m %2 %3 %4 %5 %6 %7 %8 %9 goto :EOF
Build script error propagation fix
Build script error propagation fix
Batchfile
apache-2.0
vasiliy-vdovichenko/ncrontab,codesharpdev/ncrontab,DanThiffault/ncrontab,youniss2013/ncrontab,micheltol/ncrontab,klunwebale/ncrontab,JophyJob/ncrontab
3dced04aabd84c5930c96d5ea1baa72537110af8
resources/win/atom.cmd
resources/win/atom.cmd
@echo off SET EXPECT_OUTPUT= FOR %%a IN (%*) DO ( IF /I "%%a"=="-h" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--help" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-v" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--version" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-f" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--foreground" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-w" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--wait" SET EXPECT_OUTPUT=YES ) IF "%EXPECT_OUTPUT%"=="YES" ( "%~dp0\..\atom.exe" %* ) ELSE ( "%~dp0\..\resources\app\apm\node_modules\atom-package-manager\bin\node.exe" "%~dp0\atom.js" %* )
@echo off SET EXPECT_OUTPUT= FOR %%a IN (%*) DO ( IF /I "%%a"=="-f" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--foreground" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-h" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--help" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-t" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--test" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-v" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--version" SET EXPECT_OUTPUT=YES IF /I "%%a"=="-w" SET EXPECT_OUTPUT=YES IF /I "%%a"=="--wait" SET EXPECT_OUTPUT=YES ) IF "%EXPECT_OUTPUT%"=="YES" ( "%~dp0\..\atom.exe" %* ) ELSE ( "%~dp0\..\resources\app\apm\node_modules\atom-package-manager\bin\node.exe" "%~dp0\atom.js" %* )
Add -t and --test to expected output args
Add -t and --test to expected output args
Batchfile
mit
mdumrauf/atom,ironbox360/atom,Galactix/atom,rlugojr/atom,hakatashi/atom,alfredxing/atom,synaptek/atom,0x73/atom,YunchengLiao/atom,Rychard/atom,folpindo/atom,Ingramz/atom,me-benni/atom,deoxilix/atom,efatsi/atom,ReddTea/atom,AlbertoBarrago/atom,lisonma/atom,lovesnow/atom,alfredxing/atom,Jonekee/atom,rsvip/aTom,Neron-X5/atom,bencolon/atom,rmartin/atom,kc8wxm/atom,Ju2ender/atom,jeremyramin/atom,tjkr/atom,ralphtheninja/atom,atom/atom,elkingtonmcb/atom,MjAbuz/atom,prembasumatary/atom,palita01/atom,yomybaby/atom,ezeoleaf/atom,Abdillah/atom,GHackAnonymous/atom,CraZySacX/atom,Huaraz2/atom,sxgao3001/atom,yalexx/atom,FIT-CSE2410-A-Bombs/atom,chfritz/atom,kc8wxm/atom,bolinfest/atom,mnquintana/atom,tanin47/atom,matthewclendening/atom,kc8wxm/atom,bj7/atom,hellendag/atom,bj7/atom,mostafaeweda/atom,AdrianVovk/substance-ide,jordanbtucker/atom,MjAbuz/atom,PKRoma/atom,mostafaeweda/atom,paulcbetts/atom,Andrey-Pavlov/atom,beni55/atom,G-Baby/atom,kc8wxm/atom,dannyflax/atom,splodingsocks/atom,charleswhchan/atom,devoncarew/atom,t9md/atom,palita01/atom,gabrielPeart/atom,alfredxing/atom,nucked/atom,toqz/atom,bolinfest/atom,florianb/atom,AlexxNica/atom,YunchengLiao/atom,vinodpanicker/atom,elkingtonmcb/atom,scv119/atom,decaffeinate-examples/atom,tjkr/atom,Jandersoft/atom,vinodpanicker/atom,seedtigo/atom,ali/atom,florianb/atom,rmartin/atom,davideg/atom,sebmck/atom,mdumrauf/atom,sebmck/atom,stuartquin/atom,ali/atom,russlescai/atom,chengky/atom,pombredanne/atom,bencolon/atom,brumm/atom,Jonekee/atom,elkingtonmcb/atom,dannyflax/atom,RuiDGoncalves/atom,helber/atom,Jdesk/atom,sekcheong/atom,liuxiong332/atom,anuwat121/atom,ObviouslyGreen/atom,fang-yufeng/atom,Austen-G/BlockBuilder,FoldingText/atom,vhutheesing/atom,ali/atom,bsmr-x-script/atom,pkdevbox/atom,PKRoma/atom,amine7536/atom,sillvan/atom,crazyquark/atom,Hasimir/atom,darwin/atom,woss/atom,NunoEdgarGub1/atom,ali/atom,Rodjana/atom,prembasumatary/atom,hagb4rd/atom,devmario/atom,russlescai/atom,vinodpanicker/atom,MjAbuz/atom,kevinrenaers/atom,bsmr-x-script/atom,kdheepak89/atom,fredericksilva/atom,jtrose2/atom,kjav/atom,bryonwinger/atom,champagnez/atom,constanzaurzua/atom,scv119/atom,hagb4rd/atom,lpommers/atom,jacekkopecky/atom,deepfox/atom,beni55/atom,tony612/atom,paulcbetts/atom,gzzhanghao/atom,ppamorim/atom,dsandstrom/atom,liuxiong332/atom,lovesnow/atom,Sangaroonaom/atom,gisenberg/atom,transcranial/atom,fang-yufeng/atom,jacekkopecky/atom,davideg/atom,Jandersolutions/atom,liuderchi/atom,andrewleverette/atom,001szymon/atom,mnquintana/atom,bsmr-x-script/atom,n-riesco/atom,scippio/atom,sotayamashita/atom,kaicataldo/atom,Neron-X5/atom,avdg/atom,jacekkopecky/atom,einarmagnus/atom,GHackAnonymous/atom,mrodalgaard/atom,devmario/atom,brettle/atom,panuchart/atom,fredericksilva/atom,Ju2ender/atom,phord/atom,deepfox/atom,RobinTec/atom,Rychard/atom,fredericksilva/atom,burodepeper/atom,chfritz/atom,fang-yufeng/atom,yamhon/atom,Klozz/atom,kjav/atom,daxlab/atom,dkfiresky/atom,ardeshirj/atom,nrodriguez13/atom,toqz/atom,constanzaurzua/atom,lisonma/atom,codex8/atom,Neron-X5/atom,sotayamashita/atom,Hasimir/atom,yalexx/atom,prembasumatary/atom,ReddTea/atom,KENJU/atom,ezeoleaf/atom,charleswhchan/atom,woss/atom,synaptek/atom,AdrianVovk/substance-ide,ashneo76/atom,hharchani/atom,champagnez/atom,pkdevbox/atom,vjeux/atom,hagb4rd/atom,ilovezy/atom,kjav/atom,me6iaton/atom,targeter21/atom,fedorov/atom,nrodriguez13/atom,kdheepak89/atom,constanzaurzua/atom,abcP9110/atom,jacekkopecky/atom,devoncarew/atom,yomybaby/atom,acontreras89/atom,vjeux/atom,toqz/atom,Huaraz2/atom,vcarrera/atom,hpham04/atom,KENJU/atom,ilovezy/atom,KENJU/atom,FoldingText/atom,boomwaiza/atom,johnhaley81/atom,isghe/atom,kjav/atom,stuartquin/atom,h0dgep0dge/atom,omarhuanca/atom,lovesnow/atom,basarat/atom,toqz/atom,gontadu/atom,sillvan/atom,MjAbuz/atom,acontreras89/atom,kevinrenaers/atom,devoncarew/atom,me6iaton/atom,dkfiresky/atom,abcP9110/atom,AdrianVovk/substance-ide,vcarrera/atom,Shekharrajak/atom,Hasimir/atom,RobinTec/atom,avdg/atom,einarmagnus/atom,amine7536/atom,CraZySacX/atom,tmunro/atom,florianb/atom,liuderchi/atom,Galactix/atom,scippio/atom,hharchani/atom,rlugojr/atom,florianb/atom,Dennis1978/atom,ali/atom,Shekharrajak/atom,YunchengLiao/atom,kc8wxm/atom,fscherwi/atom,deepfox/atom,matthewclendening/atom,rxkit/atom,harshdattani/atom,splodingsocks/atom,n-riesco/atom,dannyflax/atom,matthewclendening/atom,Jdesk/atom,hagb4rd/atom,Jdesk/atom,xream/atom,GHackAnonymous/atom,crazyquark/atom,kittens/atom,Dennis1978/atom,niklabh/atom,einarmagnus/atom,gisenberg/atom,GHackAnonymous/atom,Andrey-Pavlov/atom,bcoe/atom,paulcbetts/atom,alexandergmann/atom,batjko/atom,charleswhchan/atom,vinodpanicker/atom,Abdillah/atom,Jandersoft/atom,batjko/atom,synaptek/atom,decaffeinate-examples/atom,oggy/atom,matthewclendening/atom,Andrey-Pavlov/atom,jlord/atom,jjz/atom,ppamorim/atom,hakatashi/atom,palita01/atom,qskycolor/atom,niklabh/atom,tmunro/atom,fedorov/atom,gisenberg/atom,johnrizzo1/atom,matthewclendening/atom,bcoe/atom,lovesnow/atom,dkfiresky/atom,tisu2tisu/atom,FIT-CSE2410-A-Bombs/atom,chfritz/atom,Austen-G/BlockBuilder,ilovezy/atom,pombredanne/atom,rookie125/atom,gabrielPeart/atom,burodepeper/atom,johnhaley81/atom,RobinTec/atom,hharchani/atom,abcP9110/atom,yalexx/atom,john-kelly/atom,brumm/atom,yangchenghu/atom,AlexxNica/atom,Jdesk/atom,mertkahyaoglu/atom,omarhuanca/atom,hellendag/atom,mostafaeweda/atom,rsvip/aTom,lpommers/atom,rmartin/atom,kandros/atom,synaptek/atom,hpham04/atom,stuartquin/atom,splodingsocks/atom,AlbertoBarrago/atom,kittens/atom,amine7536/atom,nucked/atom,prembasumatary/atom,folpindo/atom,mertkahyaoglu/atom,isghe/atom,n-riesco/atom,Abdillah/atom,chengky/atom,dsandstrom/atom,batjko/atom,amine7536/atom,kevinrenaers/atom,yomybaby/atom,001szymon/atom,ardeshirj/atom,dsandstrom/atom,sekcheong/atom,fang-yufeng/atom,Ju2ender/atom,originye/atom,yalexx/atom,harshdattani/atom,Austen-G/BlockBuilder,qiujuer/atom,amine7536/atom,001szymon/atom,jlord/atom,isghe/atom,FoldingText/atom,john-kelly/atom,pengshp/atom,lisonma/atom,Mokolea/atom,batjko/atom,brumm/atom,rmartin/atom,phord/atom,chengky/atom,scv119/atom,panuchart/atom,john-kelly/atom,jlord/atom,rookie125/atom,qskycolor/atom,jjz/atom,Ju2ender/atom,codex8/atom,n-riesco/atom,xream/atom,chengky/atom,jlord/atom,Jandersolutions/atom,stinsonga/atom,jjz/atom,liuxiong332/atom,yomybaby/atom,qskycolor/atom,ashneo76/atom,atom/atom,vcarrera/atom,isghe/atom,dsandstrom/atom,mertkahyaoglu/atom,johnhaley81/atom,Sangaroonaom/atom,jlord/atom,stinsonga/atom,sotayamashita/atom,medovob/atom,fang-yufeng/atom,cyzn/atom,ykeisuke/atom,kandros/atom,Jandersolutions/atom,liuxiong332/atom,russlescai/atom,wiggzz/atom,jeremyramin/atom,ezeoleaf/atom,lisonma/atom,RobinTec/atom,yalexx/atom,originye/atom,originye/atom,niklabh/atom,sxgao3001/atom,kdheepak89/atom,AlisaKiatkongkumthon/atom,toqz/atom,me6iaton/atom,jtrose2/atom,devmario/atom,andrewleverette/atom,pombredanne/atom,scippio/atom,SlimeQ/atom,qskycolor/atom,liuderchi/atom,yangchenghu/atom,devmario/atom,jtrose2/atom,yamhon/atom,helber/atom,PKRoma/atom,gontadu/atom,hharchani/atom,basarat/atom,targeter21/atom,gontadu/atom,tony612/atom,Jandersoft/atom,lpommers/atom,john-kelly/atom,bryonwinger/atom,crazyquark/atom,bcoe/atom,Jandersolutions/atom,Jandersoft/atom,nvoron23/atom,BogusCurry/atom,mnquintana/atom,champagnez/atom,tisu2tisu/atom,MjAbuz/atom,targeter21/atom,nvoron23/atom,Austen-G/BlockBuilder,0x73/atom,KENJU/atom,davideg/atom,Rodjana/atom,RuiDGoncalves/atom,t9md/atom,kittens/atom,omarhuanca/atom,0x73/atom,gisenberg/atom,folpindo/atom,ppamorim/atom,devoncarew/atom,dkfiresky/atom,ReddTea/atom,Klozz/atom,pengshp/atom,harshdattani/atom,deepfox/atom,seedtigo/atom,acontreras89/atom,bencolon/atom,Austen-G/BlockBuilder,sillvan/atom,mdumrauf/atom,john-kelly/atom,hpham04/atom,phord/atom,anuwat121/atom,woss/atom,brettle/atom,mnquintana/atom,darwin/atom,Austen-G/BlockBuilder,constanzaurzua/atom,jtrose2/atom,boomwaiza/atom,dijs/atom,efatsi/atom,g2p/atom,hakatashi/atom,targeter21/atom,jacekkopecky/atom,fedorov/atom,abcP9110/atom,vcarrera/atom,rmartin/atom,Galactix/atom,wiggzz/atom,tanin47/atom,Galactix/atom,medovob/atom,KENJU/atom,gzzhanghao/atom,ashneo76/atom,sxgao3001/atom,atom/atom,avdg/atom,fscherwi/atom,dijs/atom,ykeisuke/atom,fredericksilva/atom,NunoEdgarGub1/atom,Locke23rus/atom,bolinfest/atom,FoldingText/atom,bcoe/atom,vinodpanicker/atom,kittens/atom,mostafaeweda/atom,nvoron23/atom,hharchani/atom,Locke23rus/atom,me6iaton/atom,cyzn/atom,qiujuer/atom,mertkahyaoglu/atom,nvoron23/atom,h0dgep0dge/atom,sekcheong/atom,acontreras89/atom,SlimeQ/atom,dijs/atom,basarat/atom,dannyflax/atom,russlescai/atom,Shekharrajak/atom,sebmck/atom,woss/atom,kdheepak89/atom,DiogoXRP/atom,hellendag/atom,mrodalgaard/atom,svanharmelen/atom,davideg/atom,jjz/atom,g2p/atom,seedtigo/atom,RobinTec/atom,qiujuer/atom,johnrizzo1/atom,nvoron23/atom,h0dgep0dge/atom,vjeux/atom,kandros/atom,FIT-CSE2410-A-Bombs/atom,paulcbetts/atom,tony612/atom,Mokolea/atom,beni55/atom,dkfiresky/atom,panuchart/atom,AlbertoBarrago/atom,jacekkopecky/atom,pengshp/atom,isghe/atom,fedorov/atom,florianb/atom,vcarrera/atom,stinsonga/atom,sillvan/atom,Ingramz/atom,n-riesco/atom,Ju2ender/atom,ilovezy/atom,sebmck/atom,AlexxNica/atom,h0dgep0dge/atom,cyzn/atom,SlimeQ/atom,ReddTea/atom,rlugojr/atom,ivoadf/atom,batjko/atom,kaicataldo/atom,johnrizzo1/atom,Neron-X5/atom,nucked/atom,efatsi/atom,codex8/atom,Shekharrajak/atom,jordanbtucker/atom,ykeisuke/atom,dannyflax/atom,ralphtheninja/atom,gabrielPeart/atom,medovob/atom,Ingramz/atom,decaffeinate-examples/atom,charleswhchan/atom,Dennis1978/atom,charleswhchan/atom,Shekharrajak/atom,rxkit/atom,prembasumatary/atom,omarhuanca/atom,oggy/atom,ilovezy/atom,liuderchi/atom,transcranial/atom,qskycolor/atom,svanharmelen/atom,splodingsocks/atom,NunoEdgarGub1/atom,vjeux/atom,0x73/atom,bryonwinger/atom,mnquintana/atom,fredericksilva/atom,Galactix/atom,pombredanne/atom,Rychard/atom,DiogoXRP/atom,NunoEdgarGub1/atom,yangchenghu/atom,lisonma/atom,Huaraz2/atom,g2p/atom,tmunro/atom,brettle/atom,YunchengLiao/atom,ivoadf/atom,NunoEdgarGub1/atom,ReddTea/atom,me-benni/atom,Arcanemagus/atom,kittens/atom,gisenberg/atom,einarmagnus/atom,Sangaroonaom/atom,woss/atom,Jonekee/atom,transcranial/atom,chengky/atom,t9md/atom,Mokolea/atom,hpham04/atom,einarmagnus/atom,sekcheong/atom,G-Baby/atom,Locke23rus/atom,G-Baby/atom,Klozz/atom,rxkit/atom,alexandergmann/atom,bryonwinger/atom,acontreras89/atom,basarat/atom,basarat/atom,liuxiong332/atom,boomwaiza/atom,hpham04/atom,ralphtheninja/atom,scv119/atom,ironbox360/atom,crazyquark/atom,mrodalgaard/atom,andrewleverette/atom,darwin/atom,tanin47/atom,devoncarew/atom,jeremyramin/atom,Neron-X5/atom,Hasimir/atom,fedorov/atom,jjz/atom,FoldingText/atom,lovesnow/atom,Rodjana/atom,svanharmelen/atom,GHackAnonymous/atom,bcoe/atom,ppamorim/atom,constanzaurzua/atom,sxgao3001/atom,kjav/atom,yamhon/atom,Jandersoft/atom,tjkr/atom,vjeux/atom,Andrey-Pavlov/atom,ardeshirj/atom,FoldingText/atom,bj7/atom,tony612/atom,omarhuanca/atom,CraZySacX/atom,burodepeper/atom,BogusCurry/atom,kaicataldo/atom,qiujuer/atom,deoxilix/atom,vhutheesing/atom,ObviouslyGreen/atom,oggy/atom,anuwat121/atom,hakatashi/atom,mostafaeweda/atom,tony612/atom,Abdillah/atom,sxgao3001/atom,rsvip/aTom,ivoadf/atom,me6iaton/atom,pkdevbox/atom,russlescai/atom,Andrey-Pavlov/atom,tisu2tisu/atom,SlimeQ/atom,pombredanne/atom,yomybaby/atom,DiogoXRP/atom,BogusCurry/atom,kdheepak89/atom,mertkahyaoglu/atom,gzzhanghao/atom,dannyflax/atom,basarat/atom,deepfox/atom,davideg/atom,YunchengLiao/atom,targeter21/atom,wiggzz/atom,qiujuer/atom,codex8/atom,daxlab/atom,ironbox360/atom,fscherwi/atom,devmario/atom,synaptek/atom,AlisaKiatkongkumthon/atom,sillvan/atom,ppamorim/atom,codex8/atom,Hasimir/atom,deoxilix/atom,dsandstrom/atom,sekcheong/atom,rookie125/atom,vhutheesing/atom,oggy/atom,sebmck/atom,me-benni/atom,SlimeQ/atom,daxlab/atom,jordanbtucker/atom,RuiDGoncalves/atom,AlisaKiatkongkumthon/atom,rsvip/aTom,hagb4rd/atom,alexandergmann/atom,decaffeinate-examples/atom,xream/atom,Arcanemagus/atom,stinsonga/atom,jtrose2/atom,ObviouslyGreen/atom,ezeoleaf/atom,crazyquark/atom,Abdillah/atom,Jandersolutions/atom,rsvip/aTom,Jdesk/atom,oggy/atom,nrodriguez13/atom,abcP9110/atom,Arcanemagus/atom,helber/atom
949d8d135a372024d6f0bdf2fb19ff703e102fd7
RocketLeagueReplayParser/NugetPackagePublish.bat
RocketLeagueReplayParser/NugetPackagePublish.bat
@echo off call ..\..\SetNugetApiKey.bat del *.nupkg nuget pack RocketLeagueReplayParser.csproj -Build -Prop Configuration=Release nuget setApiKey %NUGET_API_KEY% nuget push *.nupkg pause
@echo off call ..\..\SetNugetApiKey.bat del *.nupkg ..\..\nuget pack RocketLeagueReplayParser.csproj -Build -Prop Configuration=Release ..\..\nuget setApiKey %NUGET_API_KEY% ..\..\nuget push *.nupkg pause
Update nuget publish script for updated nuget.exe path
Update nuget publish script for updated nuget.exe path
Batchfile
mit
jjbott/RocketLeagueReplayParser
b0588575c86fd9a3e39b9378de957bacdfc91e3f
ghci.bat
ghci.bat
ghci.exe -isrc -i. src\Main.hs -fno-warn-overlapping-patterns -w -fwarn-unused-binds -fwarn-unused-imports -package haskell-src-exts-1.3.0
ghci.exe -isrc -i. src\Main.hs -fno-warn-overlapping-patterns -w -fwarn-unused-binds -fwarn-unused-imports
Remove the restriction to haskell-src-exts-1.3.0 in the .bat file
Remove the restriction to haskell-src-exts-1.3.0 in the .bat file
Batchfile
bsd-3-clause
eigengrau/hlint,mpickering/hlint,ndmitchell/hlint,gibiansky/hlint,ndmitchell/hlint,bitemyapp/hlint
74acdac62e6becbbac882b4af9fe442ff19a20dc
oq-engine/oq-server.bat
oq-engine/oq-server.bat
@echo off setlocal set mypath=%~dp0 set PYTHONPATH=pkgs if "%PROCESSOR_ARCHITECTURE%"=="x86" ( set common="%COMMONPROGRAMFILES%" ) else ( set common="%COMMONPROGRAMFILES(x86)%" ) REM Start the DbServer in background but within the same context start "OpenQuake DB server" /B %common%\Python\2.7\python.exe -m openquake.server.dbserver REM Make sure that the dbserver is up and running echo Please wait ... if exist C:\Windows\System32\timeout.exe ( timeout /t 10 /nobreak > NUL ) else ( REM Windows XP hack ping 192.0.2.2 -n 1 -w 10000 > nul ) REM Start the WebUI using django %common%\Python\2.7\python.exe -m openquake.server.manage runserver %* endlocal
@echo off setlocal set mypath=%~dp0 set PYTHONPATH=pkgs if "%PROCESSOR_ARCHITECTURE%"=="x86" ( set common="%COMMONPROGRAMFILES%" ) else ( set common="%COMMONPROGRAMFILES(x86)%" ) REM Start the DbServer in background but within the same context start "OpenQuake DB server" /B %common%\Python\2.7\python.exe -m openquake.server.dbserver REM Make sure that the dbserver is up and running echo Please wait ... if exist C:\Windows\System32\timeout.exe ( timeout /t 10 /nobreak > NUL ) else ( REM Windows XP hack ping 192.0.2.2 -n 1 -w 10000 > NUL ) REM Start the WebUI using django %common%\Python\2.7\python.exe -m openquake.server.manage runserver %* endlocal
Use same case for NUL
Use same case for NUL
Batchfile
agpl-3.0
gem/oq-installers,gem/oq-nsis,gem/oq-installers
eaac46913ed0ad76eb2d22a0714da8d807e9ea10
recipes/pythonfmu/bld.bat
recipes/pythonfmu/bld.bat
mkdir tmp-build if errorlevel 1 exit 1 cd tmp-build if errorlevel 1 exit 1 cmake ../pythonfmu/pythonfmu-export -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release if errorlevel 1 exit 1 cmake --build . --config Release if errorlevel 1 exit 1 cd .. if errorlevel 1 exit 1 %PYTHON% -m pip install . -vv if errorlevel 1 exit 1
mkdir tmp-build if errorlevel 1 exit 1 cd tmp-build if errorlevel 1 exit 1 cmake ../pythonfmu/pythonfmu-export -G "Ninja" -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release if errorlevel 1 exit 1 cmake --build . --config Release if errorlevel 1 exit 1 cd .. if errorlevel 1 exit 1 %PYTHON% -m pip install . -vv if errorlevel 1 exit 1
Use Ninja as generator on Windows
Use Ninja as generator on Windows
Batchfile
bsd-3-clause
patricksnape/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,dschreij/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,jochym/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,asmeurer/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,asmeurer/staged-recipes,jochym/staged-recipes
a75f81f7387bea2a1abe98ebec44d39f53071f07
recipes/tcplotter/bld.bat
recipes/tcplotter/bld.bat
:: Build tcplotter command-line utilities using cmake :: Change working directory to archive directory cd "%PKG_NAME%" :: Create build directory cd "src" mkdir build if errorlevel 1 exit 1 cd build if errorlevel 1 exit 1 :: Build with cmake cmake -G "Visual Studio 15 2017" -A x64 .. if errorlevel 1 exit 1 cmake --build . if errorlevel 1 exit 1 :: Install executables to bin directory cmake --build . --target install --prefix=%PREFIX% if errorlevel 1 exit 1 :: Install tcplotter cd "%SRC_DIR%" $PYTHON -m pip install . -vv
:: Build tcplotter command-line utilities using cmake :: Change working directory to archive directory cd "%PKG_NAME%" :: Create build directory cd "src" mkdir build if errorlevel 1 exit 1 cd build if errorlevel 1 exit 1 :: Build with cmake cmake -G "Visual Studio 16 2019" -A x64 .. if errorlevel 1 exit 1 cmake --build . if errorlevel 1 exit 1 :: Install executables to bin directory cmake --build . --target install --prefix=%PREFIX% if errorlevel 1 exit 1 :: Install tcplotter cd "%SRC_DIR%" $PYTHON -m pip install . -vv
Revert to Visual Studio 16 2019
Revert to Visual Studio 16 2019
Batchfile
bsd-3-clause
conda-forge/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes
465391e0cc575d1454b847db2b4c7435ce9f831e
slave/run_webserver.bat
slave/run_webserver.bat
@echo off set lighttpd_dir=%~dp0..\third_party\lighttpd\win REM copy lighttpd.exe to lighttpd_server.exe, because we don't want it to be REM killed by taskkill. REM Since xcopy is stupid, tell it that lighttpd_server.exe is a file and not REM a directory using the echo hack. echo f | xcopy /D %lighttpd_dir%\lighttpd.exe %lighttpd_dir%\lighttpd_server.exe REM copy the cygwin dll to the lighttpd folder because otherwise it wont work. xcopy /D %lighttpd_dir%\..\no_dll\CygWin1.dll %lighttpd_dir% REM Start the server, using the conf file in the slave directory. :RESTART echo Starting %lighttpd_dir%\lighttpd_server.exe -f %~dp0\lighttpd.conf -m %lighttpd_dir%\lib %lighttpd_dir%\lighttpd_server.exe -f %~dp0\lighttpd.conf -m %lighttpd_dir%\lib -D goto :RESTART
@echo off set lighttpd_dir=%~dp0..\third_party\lighttpd\win REM copy lighttpd.exe to lighttpd_server.exe, because we don't want it to be REM killed by taskkill. REM Since xcopy is stupid, tell it that lighttpd_server.exe is a file and not REM a directory using the echo hack. echo f | xcopy /D /Y %lighttpd_dir%\lighttpd.exe %lighttpd_dir%\lighttpd_server.exe REM copy the cygwin dll to the lighttpd folder because otherwise it wont work. xcopy /D /Y %lighttpd_dir%\..\no_dll\CygWin1.dll %lighttpd_dir% REM Start the server, using the conf file in the slave directory. :RESTART echo Starting %lighttpd_dir%\lighttpd_server.exe -f %~dp0\lighttpd.conf -m %lighttpd_dir%\lib %lighttpd_dir%\lighttpd_server.exe -f %~dp0\lighttpd.conf -m %lighttpd_dir%\lib -D goto :RESTART
Add /Y to xcopy of cygwin1.dll in lighttpd dir
Add /Y to xcopy of cygwin1.dll in lighttpd dir So that when we make a copy in the win\ folder the batch file won't hang waiting for confirmation. The 5-ish step process: - Make this batch file not hang if the dest already exists - Copy no_dll\cygwin1.dll to the win\ folder in the lighttpd DEPS tree - Remove third_party/cygwin - Remove the xcopy in run_webserver.bat - Remove the copy of cygwin1.dll in no_dll subdirectory. BUG=123026 R=dpranke@chromium.org, iannucci@chromium.org Review URL: https://codereview.chromium.org/138633005 git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@248004 0039d316-1c4b-4281-b951-d872f2087c98
Batchfile
bsd-3-clause
eunchong/build,eunchong/build,eunchong/build,eunchong/build
8eaf29c30e3cda54e25f6db96169dcc45fbfda1c
build.bat
build.bat
@setlocal @cd SLOTaxService @msbuild /t:build /p:Configuration=Release /nologo /v:m @if %errorlevel% neq 0 exit /b %errorlevel% @cd .. @cd SLOTaxGuiTest @msbuild /t:build /p:Configuration=Release /nologo /v:m @if %errorlevel% neq 0 exit /b %errorlevel% @cd ..
@setlocal @cd SLOTaxGuiTest40 @msbuild /t:build /p:Configuration=Release /nologo /v:m @if %errorlevel% neq 0 exit /b %errorlevel% @cd .. @cd SLOTaxGuiTest @msbuild /t:build /p:Configuration=Release /nologo /v:m @if %errorlevel% neq 0 exit /b %errorlevel% @cd .. @rd FinalOutput /s /q @md FinalOutput @cd FinalOutput @md Net40 @md Net45 @cd .. @copy SLOTaxGuiTest40\bin\Release\*.exe FinalOutput\Net40 @copy SLOTaxGuiTest40\bin\Release\*.dll FinalOutput\Net40 @copy SLOTaxGuiTest40\bin\Release\*.config FinalOutput\Net40 @del FinalOutput\Net40\*vshost* @copy SLOTaxGuiTest\bin\Release\*.exe FinalOutput\Net45 @copy SLOTaxGuiTest\bin\Release\*.dll FinalOutput\Net45 @copy SLOTaxGuiTest\bin\Release\*.config FinalOutput\Net45 @del FinalOutput\Net45\*vshost*
Build .Net 4.0 and .Net 4.5 projects
Build .Net 4.0 and .Net 4.5 projects
Batchfile
mit
MPrtenjak/SLOTax
74655e55d7cb01fa73d6a0262b91ac8e40197d05
build.cmd
build.cmd
@ECHO OFF REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`. setlocal set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;tools\NuGet nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages fsi.exe --exec build.fsx %*
@ECHO OFF REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`. setlocal set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Framework\v4.0 set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.0\Framework\v4.0 set PATH=%PATH%;tools\NuGet nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages fsi.exe --exec build.fsx %*
Rename Zafir packages to WebSharper
Rename Zafir packages to WebSharper
Batchfile
apache-2.0
intellifactory/websharper.jqueryui
0deeb8cda4eed337293b58765b73394a72480ec1
src/libGLESv2/shaders/generate_shaders.bat
src/libGLESv2/shaders/generate_shaders.bat
@ECHO OFF REM REM Copyright (c) 2012 The ANGLE Project Authors. All rights reserved. REM Use of this source code is governed by a BSD-style license that can be REM found in the LICENSE file. REM PATH %PATH%;%DXSDK_DIR%\Utilities\bin\x86 fxc /E standardvs /T vs_2_0 /Fh standardvs.h Blit.vs fxc /E flipyvs /T vs_2_0 /Fh flipyvs.h Blit.vs fxc /E passthroughps /T ps_2_0 /Fh passthroughps.h Blit.ps fxc /E luminanceps /T ps_2_0 /Fh luminanceps.h Blit.ps fxc /E componentmaskps /T ps_2_0 /Fh componentmaskps.h Blit.ps fxc /E VS_Passthrough /T vs_4_0 /Fh passthrough11vs.h Passthrough11.hlsl fxc /E PS_Passthrough /T ps_4_0 /Fh passthrough11ps.h Passthrough11.hlsl
@ECHO OFF REM REM Copyright (c) 2012 The ANGLE Project Authors. All rights reserved. REM Use of this source code is governed by a BSD-style license that can be REM found in the LICENSE file. REM PATH %PATH%;%DXSDK_DIR%\Utilities\bin\x86 fxc /E standardvs /T vs_2_0 /Fh standardvs.h Blit.vs fxc /E flipyvs /T vs_2_0 /Fh flipyvs.h Blit.vs fxc /E passthroughps /T ps_2_0 /Fh passthroughps.h Blit.ps fxc /E luminanceps /T ps_2_0 /Fh luminanceps.h Blit.ps fxc /E componentmaskps /T ps_2_0 /Fh componentmaskps.h Blit.ps fxc /E VS_Passthrough /T vs_4_0 /Fh passthrough11vs.h Passthrough11.hlsl fxc /E PS_Passthrough /T ps_4_0 /Fh passthrough11ps.h Passthrough11.hlsl
Fix mixed line endings in generateshader.bat
Fix mixed line endings in generateshader.bat git-svn-id: 2a1ef23f1c4b6a1dbccd5f9514022461535c55c0@1552 736b8ea6-26fd-11df-bfd4-992fa37f6226
Batchfile
bsd-3-clause
ehsan/angle,MIPS/external-chromium_org-third_party-angle,MSOpenTech/angle,android-ia/platform_external_chromium_org_third_party_angle,cvsuser-chromium/chromium-third-party_angle_dx11,geekboxzone/lollipop_external_chromium_org_third_party_angle,nandhanurrevanth/angle,jgcaaprom/android_external_chromium_org_third_party_angle,KTXSoftware/angleproject,ppy/angle,xin3liang/platform_external_chromium_org_third_party_angle,domokit/waterfall,MIPS/external-chromium_org-third_party-angle,xin3liang/platform_external_chromium_org_third_party_angle_dx11,larsbergstrom/angle,mlfarrell/angle,pombreda/angleproject,vvuk/angle,MIPS/external-chromium_org-third_party-angle,vvuk/angle,xin3liang/platform_external_chromium_org_third_party_angle,vvuk/angle-old,android-ia/platform_external_chromium_org_third_party_angle_dx11,RepublicMaster/angleproject,bsergean/angle,themusicgod1/angleproject,cvsuser-chromium/chromium-third-party_angle_dx11,csa7mdm/angle,mikolalysenko/angle,jgcaaprom/android_external_chromium_org_third_party_angle,pombreda/angleproject,cantren/angleproject,themusicgod1/angleproject,csa7mdm/angle,MSOpenTech/angle-win8.0,vvuk/angle-old,MSOpenTech/angle-win8.0,MIPS/external-chromium_org-third_party-angle_dx11,mrobinson/rust-angle,mlfarrell/angle,nandhanurrevanth/angle,xin3liang/platform_external_chromium_org_third_party_angle,MIPS/external-chromium_org-third_party-angle_dx11,nandhanurrevanth/angle,mybios/angle,ghostoy/angle,RepublicMaster/angleproject,KalebDark/angleproject,android-ia/platform_external_chromium_org_third_party_angle_dx11,MSOpenTech/angle,csa7mdm/angle,ppy/angle,android-ia/platform_external_chromium_org_third_party_angle,MSOpenTech/angle,geekboxzone/lollipop_external_chromium_org_third_party_angle,vvuk/angle-old,MSOpenTech/angle,KalebDark/angleproject,geekboxzone/lollipop_external_chromium_org_third_party_angle,xuxiandi/angleproject,mlfarrell/angle,ecoal95/angle,themusicgod1/angleproject,nandhanurrevanth/angle,android-ia/platform_external_chromium_org_third_party_angle_dx11,android-ia/platform_external_chromium_org_third_party_angle,ghostoy/angle,ehsan/angle,xuxiandi/angleproject,cvsuser-chromium/chromium-third-party_angle_dx11,MSOpenTech/angle-win8.0,pombreda/angleproject,shairai/angleproject,ghostoy/angle,KalebDark/angleproject,crezefire/angle,RepublicMaster/angleproject,cantren/angleproject,vvuk/angle-old,xin3liang/platform_external_chromium_org_third_party_angle_dx11,mikolalysenko/angle,crezefire/angle,ehsan/angle,mrobinson/rust-angle,geekboxzone/lollipop_external_chromium_org_third_party_angle,stammen/angleproject,android-ia/platform_external_chromium_org_third_party_angle_dx11,pombreda/angleproject,RepublicMaster/angleproject,mybios/angle,mrobinson/rust-angle,bsergean/angle,KTXSoftware/angleproject,ecoal95/angle,stammen/angleproject,larsbergstrom/angle,larsbergstrom/angle,ppy/angle,crezefire/angle,cantren/angleproject,cvsuser-chromium/chromium-third-party_angle_dx11,mikolalysenko/angle,vvuk/angle,vvuk/angle,KalebDark/angleproject,jgcaaprom/android_external_chromium_org_third_party_angle,bsergean/angle,xuxiandi/angleproject,xin3liang/platform_external_chromium_org_third_party_angle_dx11,KTXSoftware/angleproject,stammen/angleproject,larsbergstrom/angle,mikolalysenko/angle,themusicgod1/angleproject,MIPS/external-chromium_org-third_party-angle,csa7mdm/angle,KTXSoftware/angleproject,jgcaaprom/android_external_chromium_org_third_party_angle,ecoal95/angle,shairai/angleproject,cantren/angleproject,ppy/angle,domokit/waterfall,ecoal95/angle,KTXSoftware/angleproject,ehsan/angle,mybios/angle,ghostoy/angle,bsergean/angle,MIPS/external-chromium_org-third_party-angle_dx11,shairai/angleproject,xuxiandi/angleproject,mrobinson/rust-angle,shairai/angleproject,ecoal95/angle,xin3liang/platform_external_chromium_org_third_party_angle,MSOpenTech/angle-win8.0,xin3liang/platform_external_chromium_org_third_party_angle_dx11,MIPS/external-chromium_org-third_party-angle_dx11,stammen/angleproject,mybios/angle,mlfarrell/angle,android-ia/platform_external_chromium_org_third_party_angle,mrobinson/rust-angle,crezefire/angle
c004edc9cb2c8cb37949065adc0c645808674064
perforce/perforce_update.bat
perforce/perforce_update.bat
REM This Windows batch script logs into Perforce and updates a file named `last_updated` in the depot with the current date and timestamp. REM This can be set up to be executed upon startup/login to avoid expiration of access permissions upon a lack of recent Perforce updates. SET P4PORT= SET P4CLIENT= SET P4USER= SET P4PASSWD= SET DIR= SET FILEPATH=%DIR%\last_updated p4 login -s p4 info p4 sync -q -f REM If the file does not exist, ADD will be successful; if the file does exist, EDIT will be successful p4 add %FILEPATH% p4 edit %FILEPATH% ECHO %DATE%-%TIME% > %FILEPATH% p4 submit -d "Update" %FILEPATH% p4 logout
@ECHO OFF SETLOCAL ENABLEEXTENSIONS REM This Windows batch script logs into Perforce and updates a file named `last_updated` in the depot with the current date and timestamp. REM This can be set up to be executed upon startup/login to avoid expiration of access permissions upon a lack of recent Perforce updates. ECHO [Script executed at %DATE%-%TIME%] SET P4PORT= SET P4CLIENT= SET P4USER= SET P4PASSWD= SET DIR= SET FILEPATH=%DIR%\last_updated p4 login -s p4 info p4 sync -q -f REM If the file does not exist, ADD will be successful; if the file does exist, EDIT will be successful p4 add %FILEPATH% p4 edit %FILEPATH% ECHO %DATE%-%TIME% > %FILEPATH% p4 submit -d "Update" %FILEPATH% p4 logout EXIT /B 0
Add experience enhancers to perf_update
[Perforce] Add experience enhancers to perf_update
Batchfile
mit
jleung51/scripts,jleung51/scripts,jleung51/scripts
c30bbf2ef0c9fed05d85d4845dea459691545b12
scripts/GenerateManifests.cmd
scripts/GenerateManifests.cmd
@@setlocal @@set POWERSHELL_BAT_ARGS=%* @@if defined POWERSHELL_BAT_ARGS set POWERSHELL_BAT_ARGS=%POWERSHELL_BAT_ARGS:"=\"% @@powershell.exe -Command Invoke-Expression $('$args=@(^&{$args} %POWERSHELL_BAT_ARGS%);'+[String]::Join([char]10, $((Get-Content '%~f0') -notmatch '^^@@'))) & goto :EOF if ($args.Length -lt 1 -or $args.Length -gt 2) { Write-Host "Specify an assembly path and an optional output directory."; Exit 1; } $assemblyPath = $args[0]; $outputDirectory = "."; if ($args.Length -eq 2) { $outputDirectory = $args[1]; } $eventSourceType = [System.Diagnostics.Tracing.EventSource]; $assembly = [System.Reflection.Assembly]::LoadFrom($args[0]); $types = $assembly.GetTypes(); foreach ($type in $types) { if ($type.IsSubclassOf($eventSourceType)) { Write-Host "Found type '$type'."; $text = [System.Diagnostics.Tracing.EventSource]::GenerateManifest($type, $null); $fileName = "$outputDirectory\" + $type.FullName.Replace(".", "-") + ".man"; Write-Host "Writing manifest to '$fileName'..."; $text | Out-File $fileName; } } Write-Host "Done.";
@@setlocal @@set POWERSHELL_BAT_ARGS=%* @@if defined POWERSHELL_BAT_ARGS set POWERSHELL_BAT_ARGS=%POWERSHELL_BAT_ARGS:"=\"% @@powershell.exe -Command Invoke-Expression $('$args=@(^&{$args} %POWERSHELL_BAT_ARGS%);'+[String]::Join([char]10, $((Get-Content '%~f0') -notmatch '^^@@'))) & goto :EOF if ($args.Length -lt 1 -or $args.Length -gt 2) { Write-Host "Specify an assembly path and an optional output directory."; Exit 1; } $assemblyPath = $args[0]; $outputDirectory = "."; if ($args.Length -eq 2) { $outputDirectory = $args[1]; } $eventSourceType = [System.Diagnostics.Tracing.EventSource]; $assembly = [System.Reflection.Assembly]::LoadFrom($args[0]); $types = $assembly.GetTypes(); foreach ($type in $types) { if ($type.IsSubclassOf($eventSourceType)) { Write-Host "Found type '$type'."; $text = [System.Diagnostics.Tracing.EventSource]::GenerateManifest($type, "NOT-USED"); $fileName = "$outputDirectory\" + $type.FullName.Replace(".", "-") + ".man"; Write-Host "Writing manifest to '$fileName'..."; $text | Out-File $fileName; } } Write-Host "Done.";
Add dummy resource file values for manifest
Add dummy resource file values for manifest
Batchfile
unlicense
brian-dot-net/writeasync,brian-dot-net/writeasync,brian-dot-net/writeasync
8c8fdd0a11747d9246e4e79b90fe43f22bb6f7be
recipes/pythonfmu/bld.bat
recipes/pythonfmu/bld.bat
mkdir tmp-build if errorlevel 1 exit 1 cd tmp-build if errorlevel 1 exit 1 cmake ..\pythonfmu\pythonfmu-export --debug-output -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" -DCMAKE_BUILD_TYPE=Release more .\CMakeFiles\CMakeOutput.log if errorlevel 1 exit 1 cmake --build . --config Release --verbose if errorlevel 1 exit 1 cd .. if errorlevel 1 exit 1 %PYTHON% -m pip install . -vv if errorlevel 1 exit 1
mkdir tmp-build if errorlevel 1 exit 1 cd tmp-build if errorlevel 1 exit 1 cmake --debug-output -G "Ninja" ^ -DPython3_EXECUTABLE:FILEPATH="%PYTHON%" ^ -DCMAKE_BUILD_TYPE=Release ^ ..\pythonfmu\pythonfmu-export more .\CMakeFiles\CMakeOutput.log if errorlevel 1 exit 1 REM cmake --build . --config Release --verbose ninja install if errorlevel 1 exit 1 cd .. if errorlevel 1 exit 1 %PYTHON% -m pip install . -vv if errorlevel 1 exit 1
Switch back to Ninja as generator on win
Switch back to Ninja as generator on win
Batchfile
bsd-3-clause
jochym/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,Juanlu001/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,asmeurer/staged-recipes,birdsarah/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes
a5185c4b5e2228e81718af3ab84e1bde6312866f
collate_commands.bat
collate_commands.bat
java -jar Collate-TUI.jar collate from src/main to collated/main include java, fxml, css java -jar Collate-TUI.jar collate from src/test to collated/test include java java -jar Collate-TUI.jar collate from unused to collated/unused include java, fxml, css
java -jar Collate-TUI.jar collate from src/main to collated/main include java, fxml, css java -jar Collate-TUI.jar collate from src/test to collated/test include java java -jar Collate-TUI.jar collate from unused to collated/unused include java, fxml, css
Add newline to end of file
Add newline to end of file
Batchfile
mit
CS2103JAN2017-F11-B3/main,CS2103JAN2017-F11-B3/main
ed95004f3d0e4d5af48b76e130578c9827fd539a
Deploy.cmd
Deploy.cmd
@echo off @rem Run from the root of master to deploy the currently built contents @rem of the out\ directory to PPE or PROD. PPE or PROD must be the @rem first parameter. setlocal set _env=%~1 if "%_env%"=="PPE" goto :StartDeployment if "%_env%"=="PROD" goto :StartDeployment echo ERROR: You must specify a deployment environment PPE or PROD exit /b 1 :StartDeployment @echo ================================================================= @echo %_env% Deployment @echo Checking out Deploy%_env% branch which is configured in @echo Azure App Service to automatically deploy to the %_env% @echo ZombAttack site. @echo ================================================================= call git checkout Deploy%_env% if ERRORLEVEL 1 echo ERROR: Git checkout failed && exit /b 1 @echo ================================================================= @echo Copying build in the out\ directory to the %_env% deployment @echo directory. @echo ================================================================= robocopy.exe out\. Deployed\. /s /mir if ERRORLEVEL 8 echo ERROR: Robocopy failed with errorlevel %ERRORLEVEL%. && exit /b 1 @echo ================================================================= @echo Committing and pushing copied deployment. @echo ================================================================= call git add Deployed/* call git commit -am "Deploy %_env%" call git push --set-upstream origin Deploy%_env% exit /b 0
@echo off @rem Run from the root of master to deploy the currently built contents @rem of the out\ directory to PPE or PROD. PPE or PROD must be the @rem first parameter. setlocal set _env=%~1 if "%_env%"=="PPE" goto :StartDeployment if "%_env%"=="PROD" goto :StartDeployment echo ERROR: You must specify a deployment environment PPE or PROD exit /b 1 :StartDeployment @echo ================================================================= @echo %_env% Deployment @echo Checking out Deploy%_env% branch which is configured in @echo Azure App Service to automatically deploy to the %_env% @echo ZombAttack site. @echo ================================================================= call git checkout Deploy%_env% if ERRORLEVEL 1 echo ERROR: Git checkout failed && exit /b 1 call git pull if ERRORLEVEL 1 echo ERROR: Git pull failed && exit /b 1 call git reset --hard origin/Deploy%_env% if ERRORLEVEL 1 echo ERROR: Git reset failed && exit /b 1 @echo ================================================================= @echo Copying build in the out\ directory to the %_env% deployment @echo directory. @echo ================================================================= robocopy.exe out\. Deployed\. /s /mir if ERRORLEVEL 8 echo ERROR: Robocopy failed with errorlevel %ERRORLEVEL%. && exit /b 1 @echo ================================================================= @echo Committing and pushing copied deployment. @echo ================================================================= call git add Deployed/* call git commit -am "Deploy %_env%" call git push --set-upstream origin Deploy%_env% exit /b 0
Make deployment script more resilient
Make deployment script more resilient
Batchfile
mit
erikma/ScratchPlus2016Project,6KidsGames/ZombAttack,erikma/ScratchPlus2016Project,6KidsGames/ZombAttack
d8832ff5b615a6e4dac63c95b4da151f90b75123
NuGet/pack.bat
NuGet/pack.bat
nuget pack Weingartner.Json.Migration.Fody.nuspec -OutputDirectory C:\Users\egger\Workspace\NuGet -Version 0.0.1-alpha
nuget pack Weingartner.Json.Migration.Fody.nuspec -OutputDirectory ..\..\NuGet -Version 0.0.1-alpha
Use relative path for local nuspec build script
Use relative path for local nuspec build script
Batchfile
mit
Weingartner/Migrations.Json.Net
a93e3a85fc27b30dde4d5fa41e0ff2e3e0afba7a
ci/tasks/gats-windows.bat
ci/tasks/gats-windows.bat
SET GOPATH=%CD%\gopath SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cli-acceptance-tests SET PATH=C:\Go\bin;%PATH% SET PATH=C:\Program Files\Git\cmd\;%PATH% SET PATH=%GOPATH%\bin;%PATH% SET PATH=C:\Program Files\7-Zip;%PATH% SET PATH=C:\Program Files\cURL\bin;%PATH% SET PATH=%CD%;%PATH% SET /p DOMAIN=<%CD%\bosh-lite-lock\name call %CD%\cli-ci\ci\tasks\create-cats-config.bat SET CONFIG=%CD%\config.json pushd %CD%\cf-cli-binaries 7z x cf-cli-binaries.tgz 7z x cf-cli-binaries.tar MOVE %CD%\cf-cli_winx64.exe ..\cf.exe popd go get -v github.com/onsi/ginkgo/ginkgo cd %GATSPATH% ginkgo.exe -r -nodes=4 -slowSpecThreshold=120 -randomizeSuites -skipPackage application ./gats ginkgo.exe -r -nodes=4 -slowSpecThreshold=120 -randomizeSuites ./gats/application
SET GOPATH=%CD%\gopath SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cli-acceptance-tests SET PATH=C:\Go\bin;%PATH% SET PATH=C:\Program Files\Git\cmd\;%PATH% SET PATH=%GOPATH%\bin;%PATH% SET PATH=C:\Program Files\GnuWin32\bin;%PATH% SET PATH=C:\Program Files\cURL\bin;%PATH% SET PATH=%CD%;%PATH% SET /p DOMAIN=<%CD%\bosh-lite-lock\name call %CD%\cli-ci\ci\tasks\create-cats-config.bat SET CONFIG=%CD%\config.json pushd %CD%\cf-cli-binaries gzip -d cf-cli-binaries.tgz tar -xvf cf-cli-binaries.tar MOVE %CD%\cf-cli_winx64.exe ..\cf.exe popd go get -v github.com/onsi/ginkgo/ginkgo cd %GATSPATH% ginkgo.exe -r -nodes=4 -slowSpecThreshold=120 -randomizeSuites -skipPackage application ./gats ginkgo.exe -r -nodes=4 -slowSpecThreshold=120 -randomizeSuites ./gats/application
Revert "switching to 7z as well, sourceforge still broke"
Revert "switching to 7z as well, sourceforge still broke" This reverts commit 9b2c32b64adb595d5c2e19ca7d0abf421eacc097.
Batchfile
apache-2.0
cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli
3fd79523c30f1784805750671f1f7e630544eded
Kudu.Services.Web/updateNodeModules.cmd
Kudu.Services.Web/updateNodeModules.cmd
@echo off pushd %1 if exist %1\node_modules\azure-cli\bin\azure ( call npm update azure-cli ) else ( call npm install azure-cli ) if exist %1\node_modules\kudusync\bin\kudusync ( call npm update kudusync ) else ( call npm install kudusync ) popd
@echo off pushd %1 if exist %1\node_modules\azure-cli\bin\azure ( cmd /c npm update azure-cli ) else ( cmd /c npm install azure-cli ) IF %ERRORLEVEL% NEQ 0 goto error if exist %1\node_modules\kudusync\bin\kudusync ( cmd /c npm update kudusync ) else ( cmd /c npm install kudusync ) popd
Fix npm install intermittent failures.
Fix npm install intermittent failures.
Batchfile
apache-2.0
shrimpy/kudu,juvchan/kudu,uQr/kudu,EricSten-MSFT/kudu,badescuga/kudu,shrimpy/kudu,juoni/kudu,projectkudu/kudu,chrisrpatterson/kudu,mauricionr/kudu,puneet-gupta/kudu,barnyp/kudu,uQr/kudu,uQr/kudu,kali786516/kudu,EricSten-MSFT/kudu,dev-enthusiast/kudu,juvchan/kudu,chrisrpatterson/kudu,shibayan/kudu,duncansmart/kudu,barnyp/kudu,juvchan/kudu,kenegozi/kudu,oliver-feng/kudu,mauricionr/kudu,puneet-gupta/kudu,kali786516/kudu,shibayan/kudu,WeAreMammoth/kudu-obsolete,bbauya/kudu,YOTOV-LIMITED/kudu,chrisrpatterson/kudu,kenegozi/kudu,WeAreMammoth/kudu-obsolete,sitereactor/kudu,shrimpy/kudu,YOTOV-LIMITED/kudu,barnyp/kudu,MavenRain/kudu,juoni/kudu,dev-enthusiast/kudu,kali786516/kudu,puneet-gupta/kudu,juvchan/kudu,dev-enthusiast/kudu,MavenRain/kudu,duncansmart/kudu,bbauya/kudu,mauricionr/kudu,duncansmart/kudu,oliver-feng/kudu,projectkudu/kudu,juoni/kudu,badescuga/kudu,projectkudu/kudu,bbauya/kudu,sitereactor/kudu,kenegozi/kudu,shrimpy/kudu,oliver-feng/kudu,juvchan/kudu,YOTOV-LIMITED/kudu,juoni/kudu,YOTOV-LIMITED/kudu,chrisrpatterson/kudu,projectkudu/kudu,shibayan/kudu,shanselman/kudu,sitereactor/kudu,EricSten-MSFT/kudu,MavenRain/kudu,mauricionr/kudu,MavenRain/kudu,shibayan/kudu,bbauya/kudu,uQr/kudu,dev-enthusiast/kudu,shanselman/kudu,WeAreMammoth/kudu-obsolete,oliver-feng/kudu,EricSten-MSFT/kudu,sitereactor/kudu,kenegozi/kudu,badescuga/kudu,sitereactor/kudu,shanselman/kudu,barnyp/kudu,badescuga/kudu,EricSten-MSFT/kudu,puneet-gupta/kudu,kali786516/kudu,projectkudu/kudu,shibayan/kudu,duncansmart/kudu,puneet-gupta/kudu,badescuga/kudu
b1acbeb0396722e4d6d4dfee1d6475e6fe81f328
build.bat
build.bat
set projectPath=%~dp0 if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1% set releasePath=%projectPath%\.release mkdir "%releasePath%" for /f "tokens=*" %%a in ('type version.txt') do set version=%%a del "%releasePath%\shareical_%version%.zip" "build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%version%.zip" "%projectPath%\*.*" -xr!.* -xr!build_tools -xr!components -xr!build.bat -xr!composer.json -xr!composer.lock -xr!composer.phar -xr!shareical.phpproj -xr!shareical.phpproj.user -xr!shareical.sln
set projectPath=%~dp0 if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1% set releasePath=%projectPath%\.release mkdir "%releasePath%" for /f "tokens=*" %%a in ('type version.txt') do set version=%%a del "%releasePath%\shareical_%version%.zip" "build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%version%.zip" "%projectPath%\*.*" -xr!.* -xr!build_tools -xr!build.bat -xr!composer.json -xr!composer.lock -xr!composer.phar -xr!shareical.phpproj -xr!shareical.phpproj.user -xr!shareical.sln "build_tools\7za.exe" d -tzip -r "%releasePath%\shareical_%version%.zip" components
Fix missing files in release ZIP
Fix missing files in release ZIP
Batchfile
mit
berrnd/shareical,berrnd/shareical
9f906ef9831a8f96bf4e67596bc901f0722a4518
BuildPackage.cmd
BuildPackage.cmd
call "c:\Program Files (x86)\nodejs\nodevars.bat" call npm.cmd install grunt-contrib-compress call npm.cmd install grunt-contrib-clean call npm.cmd install -g grunt-cli call grunt.cmd
call "c:\Program Files (x86)\nodejs\nodevars.bat" call npm.cmd install grunt call npm.cmd install grunt-contrib-compress call npm.cmd install grunt-contrib-clean call npm.cmd install -g grunt-cli call grunt.cmd
Fix build by installing grunt
Fix build by installing grunt grunt should be installed locally in order to be able to build the package successfully.
Batchfile
apache-2.0
Icenium/appbuilder-sublime-package,Icenium/appbuilder-sublime-package