commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
96009a5bd478fbd8c1e3985a486d2053bfd6599b | airesources/C++/make2017.bat | airesources/C++/make2017.bat | mkdir obj
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin;%PATH%
SET "VSCMD_START_DIR=%CD%"
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
cl.exe /std:c++14 /O2 /MT /EHsc /I . /Fo.\obj\ ^
/D_USE_MATH_DEFINES ^
.\hl... | Add build script for MSVC 2017 community. | Add build script for MSVC 2017 community.
| Batchfile | mit | lanyudhy/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,HaliteChallenge/Halite-II,HaliteChallenge/Halite-II,HaliteChallenge/Halite-I... | |
092e55bfdee7477866f77f927d0e995420b2cb04 | kw.cmd | kw.cmd | @echo off
setlocal
pushd "%~dp0"
for /f %%i in (kwindex.txt) do call :id %%i
goto :EOF
:id
setlocal
echo %1
for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author}\n"`) do set x=%%i
call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1
copy %temp%\%~nx1 %... | @echo off
setlocal
pushd "%~dp0"
for /f %%i in (kwindex.txt) do call :id %%i
goto :EOF
:id
setlocal
echo %1
for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author|user}\n"`) do set x=%%i
call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1
copy %temp%\%~... | Expand author in Id keyword with user portion only | Expand author in Id keyword with user portion only
| Batchfile | apache-2.0 | brumschlag/elmah.1x,Dim0N22/elmah.1x,MichaelAllenMiller/elmah.1x,tyagimanoj12/elmah.1x,bsagar27/elmah.1x,shabbirh/elmah.1x,praveen225627/elmah.1x,sevenno7/elmah.1x,mstodd/elmah.1x,kevinrademan/elmah.1x,plkumar/elmah.1x,koala59230/elmah.1x,devnixs/elmah.1x,nobitagamer/elmah.1x,isurufonseka/elmah.1x,plkumar/elmah.1x,devn... |
6eeff541c26766a9dc8b71c262efe2f5422f7276 | re/msvcbuild.bat | re/msvcbuild.bat | @setlocal
@set SCHEME_H_DIR=..\src
@set TSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE /DUSE_DL=1 /I%SCHEME_H_DIR%
@set TSLIB=lib /nologo
@set TSLINK=link /nologo
@set REGSRC=re.c regcomp.c regexec.c regerror.c regfree.c
@set OBJPRODN=re.obj regcomp.obj regexec.obj regerror.obj regfree.obj
@if "%1"... | Add a batch file to build on Windows with MSVC. | Add a batch file to build on Windows with MSVC.
| Batchfile | mit | ignorabimus/tinyscheme,ignorabimus/tinyscheme | |
aea6d03323704db98fdd365226d8b4e567270868 | samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat | samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat | @echo off
REM ---------------------------------------------------------------------------
REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM ... | @echo off
REM ---------------------------------------------------------------------------
REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM ... | Fix http-analytics quickstart script for windows | Fix http-analytics quickstart script for windows
| Batchfile | apache-2.0 | callkalpa/product-as,wso2/product-as,ChanakaCooray/product-as |
a5c372bb3b4a26eee0788750b05da9629fe53be6 | ci/install.bat | ci/install.bat | curl -sSf https://static.rust-lang.org/dist/rust-1.10.0-i686-pc-windows-msvc.exe -o rust.exe
rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust"
set PATH=%PATH%;C:\Rust\bin
curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe
7z x LLVM.exe -oC:\LLVM
set PATH=%PATH%;C:\LLVM\bin
set LIB... | curl -sSf https://static.rust-lang.org/dist/rust-1.24.0-i686-pc-windows-msvc.exe -o rust.exe
rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust"
set PATH=%PATH%;C:\Rust\bin
curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe
7z x LLVM.exe -oC:\LLVM
set PATH=%PATH%;C:\LLVM\bin
set LIB... | Update Rust version used by Appveyor | Update Rust version used by Appveyor
| Batchfile | apache-2.0 | KyleMayes/clang-rs |
d41aa39f4271563d320dae651d1ef3303b318e2e | test-setup.cmd | test-setup.cmd | @ECHO OFF
SET BASEDIR=%~dp0
PUSHD %BASEDIR%
IF NOT EXIST pyenv\NUL GOTO NOENVDIR
ECHO removing existing environment
RMDIR /S /Q pyenv
:NOENVDIR
virtualenv pyenv
CALL pyenv\Scripts\activate
python -m pip install -r pyenv.pkgs
CALL pyenv\Scripts\deactivate
POPD
| @ECHO OFF
SET BASEDIR=%~dp0
PUSHD %BASEDIR%
IF NOT EXIST pyenv\NUL GOTO NOENVDIR
ECHO removing existing environment
RMDIR /S /Q pyenv
:NOENVDIR
virtualenv pyenv
CALL pyenv\Scripts\activate
python -m pip install -r pyenv.pkgs --no-cache-dir
CALL pyenv\Scripts\deactivate
POPD
| Disable pip cache dir on Windows | Disable pip cache dir on Windows
| Batchfile | apache-2.0 | SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples |
85dc0abcaaa759588d20a6dcad27682145f37126 | run_process_with_timeout.bat | run_process_with_timeout.bat | SET EXE=%2
start %1%EXE%
timeout /t %3
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% taskkill /im %EXE% /f & exit /b 1
exit /b %errorlevel% | Add Batch File for Automated Testing with timeout | Add Batch File for Automated Testing with timeout
On Windows...
Param1 (%1) is The Path to the Directory, Param2 (%2)
the exe name, Param3 (%3) the timeout in seconds.
| Batchfile | agpl-3.0 | IDPA16/Hippocrates,SirRade/Hippocrates,SirRade/JNF_NEAT,IDPA16/Hippocrates,SirRade/Hippocrates | |
bc534fffc64e037fb99d43acf4025d8df42904f3 | Applications/Specware/bin/windows/Specware4.cmd | Applications/Specware/bin/windows/Specware4.cmd | set SPECWARE4=\Progra~1\Specware4
rem SWPATH needs /s rather than \s so URI parsing works
set SWPATH=/Progra~1/Specware4:/
set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6
rem Set allegro to the version you have
set ALLEGRO=C:\Progra~1\acl62
rem set ALLEGRO=C:\Progra~1\acl61
set SPECWARE_BIN=$SPECWARE4\Applications... | set SPECWARE4=\Progra~1\Specware4
rem SWPATH needs /s rather than \s so URI parsing works
set SWPATH=/Progra~1/Specware4:/
set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6
rem Set allegro to the version you have
rem set ALLEGRO=C:\Progra~1\acl62
set ALLEGRO=C:\Progra~1\acl61
set SPECWARE_BIN=$SPECWARE4\Applications... | Use xeli instead of eli | Use xeli instead of eli
git-svn-id: 9ecf60ce9baff443e30a0472d3fd222fcb8117cf@242 7b97033b-253e-4a5c-9b07-e25f9089a9fd
| Batchfile | bsd-2-clause | KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware |
5363c891e37aa0dee6b82cb867252d8391b35c04 | app.bat | app.bat | java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv | set PATH=%PATH%;lib
java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv | Make Netica.dll available to Windows | Make Netica.dll available to Windows
| Batchfile | mit | jhendess/vetaraus,jhendess/vetaraus |
d8ffcba544ee5fd125f5cf6331e6a905cbe0265d | run_test.bat | run_test.bat | .\Debug\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp
.\Debug\res2h.exe .\test .\results\data.bin -b -s -v | .\Release\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp
.\Release\res2h.exe .\test .\results\data.bin -b -s -v
.\Release\res2hdump.exe .\results\data.bin .\results -f -v | Update tests to dump binary archive | Update tests to dump binary archive
| Batchfile | bsd-2-clause | HorstBaerbel/res2h,HorstBaerbel/res2h,HorstBaerbel/res2h |
f3ecf49caffe330369850b46011313ed1cb5ebc1 | tools/createNugetpackage.bat | tools/createNugetpackage.bat |
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release
nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release >>log.txt |
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release
nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release | Add script to create nuget packages | Add script to create nuget packages
| Batchfile | mit | kennytordeur/CQRS |
08af6349eca8493e2936fc65c20bca13b6a8a38a | Setup/Portable/NuGet/Push.cmd | Setup/Portable/NuGet/Push.cmd | @echo off
echo.
echo Portable Accord.NET Framework NuGet package publisher
echo =========================================================
echo.
echo This Windows batch file uses NuGet to automatically
echo push the Portable Accord.NET Framework packages to the gallery.
echo.
timeout /T 5
:: Directory s... | @echo off
echo.
echo Portable Accord.NET Framework NuGet package publisher
echo =========================================================
echo.
echo This Windows batch file uses NuGet to automatically
echo push the Portable Accord.NET Framework packages to the gallery.
echo.
timeout /T 5
:: Directory s... | Use no-space path to current directory | Use no-space path to current directory
| Batchfile | lgpl-2.1 | cureos/accord,cureos/accord,cureos/accord,cureos/accord,cureos/accord |
f61e0282c96316fe6f480969ade8b789f4f177fb | scripts/build_gitlab/win.bat | scripts/build_gitlab/win.bat | @echo off
rem ======================================================================== rem
rem Copyright 2015-2017 Intel Corporation rem
rem rem
rem Licensed under the Apache License, Version 2.0 (the "License");... | @echo off
rem ======================================================================== rem
rem Copyright 2015-2017 Intel Corporation rem
rem rem
rem Licensed under the Apache License, Version 2.0 (the "License");... | Revert "fix syntax in Win ci build script" | Revert "fix syntax in Win ci build script"
This reverts commit f0eb26d197ef3f0dd750caefc7d25940102f8a18.
| Batchfile | apache-2.0 | wilsonCernWq/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray |
5553df17a291bd644ab796caf510616246c343ee | resources/skeleton/aspnet/build.cmd | resources/skeleton/aspnet/build.cmd |
setlocal
set BUILDSTAGE=build-stage
set NUGETPATH=%BUILDSTAGE%\.nuget
set NUGET=%NUGETPATH%\nuget.exe
set PACKAGESPATH=%NUGETPATH%\packages
:Build_EnvCheck
call e5r 1>nul
if "%ERRORLEVEL%"=="0" goto Build_NugetDownload
echo.
echo E5R Environment not installed!
goto Build_End
:Build_NugetDownload
if exis... |
setlocal
set BUILDSTAGE=build-stage
set NUGETPATH=%BUILDSTAGE%\.nuget
set NUGET=%NUGETPATH%\nuget.exe
set PACKAGESPATH=%NUGETPATH%\packages
:Build_EnvCheck
call e5r 1>nul
if "%ERRORLEVEL%"=="0" goto Build_NugetDownload
echo.
echo E5R Environment not installed!
goto Build_End
:Build_NugetDownload
if exis... | Use version of file and defaults runtime and arch | Use version of file and defaults runtime and arch
| Batchfile | mit | e5r/env,e5r/env |
f0cde72d54c61c3fe522649b428690fb026a5f6e | bin/hubot.cmd | bin/hubot.cmd | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" == "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if ... | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
for /f "tokens=1,2 delims==" %%i in (.env) do set %%i=%%j
if "%REDIS_URL%" ... | Load .env file on windows. | Load .env file on windows.
| Batchfile | mit | lisb/daab-starter,lisb/daab-starter,lisb/daab-starter |
122693ce10118d90a7c8f0bffcd096154a2a6551 | test/SetupScripts/apis/SetupAPIs.bat | test/SetupScripts/apis/SetupAPIs.bat | @echo off
if "%1" == "" goto :Error
goto :Start
:Error
echo usage: %0 ^<application name^>
echo where application name is a azure mobile Service app.
goto :TheEnd
:Start
call azure mobile api create %1 admin --permissions *=admin
call azure mobile api create %1 application --permissions *=application
call azure mob... | Add sript to set APIs used by E2E Apps | Add sript to set APIs used by E2E Apps
| Batchfile | apache-2.0 | daemun/azure-mobile-services,paulbatum/azure-mobile-services,marianosz/azure-mobile-services,paulbatum/azure-mobile-services,apuyana/azure-mobile-services,Azure/azure-mobile-services,Azure/azure-mobile-services,Redth/azure-mobile-services,phvannor/azure-mobile-services,cmatskas/azure-mobile-services,Reminouche/azure-mo... | |
0ed0631f024ffe60a72213419cd44d4692f8e8db | tools/cmake/plot_deps.bat | tools/cmake/plot_deps.bat | @echo off
if not exist CMakeCache.txt (
echo Run this script from the CMake build folder
exit /b
)
if not exist graphviz mkdir graphviz
cmake --graphviz=.\graphviz\deps.dot . && dot -Tpng -Gdpi=100 .\graphviz\deps.dot > deps.png && deps.png
| Add script to plot dependency graph via cmake --graphviz | Add script to plot dependency graph via cmake --graphviz
| Batchfile | mit | amaiorano/vectrexy,amaiorano/vectrexy,amaiorano/vectrexy | |
07d5c20fb8c48e4ce9933449b3786d9a571a508c | webkit/tools/layout_tests/run_webkit_tests.bat | webkit/tools/layout_tests/run_webkit_tests.bat | @..\..\..\third_party\python_24\python.exe run_webkit_tests.py %*
| @%~dp0\..\..\..\third_party\python_24\python.exe %~dp0\run_webkit_tests.py %*
| Make run_webkit_test.bat workable even if we execute it on a directory other than webkit\tools\layout_tests\. | Make run_webkit_test.bat workable even if we execute it
on a directory other than webkit\tools\layout_tests\.
%~dp0 means Drive name + Path name of the 0th argument (the bat file).
Original patch by tkent@google.com.
See http://codereview.chromium.org/113389
r=ojan
TEST=None
BUG=None
git-svn-id: dd90618784b6a4b323e... | Batchfile | bsd-3-clause | wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser |
a91d498e84d48cb53899be3f134a33b517f06ec6 | Tools/AppVeyor/Test.cmd | Tools/AppVeyor/Test.cmd | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests from: %%~dpnxa"
vstest.console /inIsolation /platform:%platform% /logger:AppVeyor %%~dpnxa
... | @echo off
call "..\VsDevCmd.cmd"
set platform="%1"
if "%1" == "AnyCPU" (
set platform="x86"
)
set vstest="%VSINSTALLDIR%Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe"
for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do (
if "%%~nxa"=="Magick.NET.Tests.dll" (
echo "Running tests f... | Use a different version of vstest.console to make sure the exit code is correct. | Use a different version of vstest.console to make sure the exit code is correct.
| Batchfile | apache-2.0 | dlemstra/Magick.NET,dlemstra/Magick.NET |
435d8aaaae19d2d1b961fcc647342046143bf409 | distribution/template-controller/bin/startMongo.bat | distribution/template-controller/bin/startMongo.bat | @rem ***************************************************************************
@rem (C) Copyright 2016 Jerome Comte and Dorian Cransac
@rem
@rem This file is part of STEP
@rem
@rem STEP is free software: you can redistribute it and/or modify
@rem it under the terms of the GNU Affero General Public License as publ... | @rem ***************************************************************************
@rem (C) Copyright 2016 Jerome Comte and Dorian Cransac
@rem
@rem This file is part of STEP
@rem
@rem STEP is free software: you can redistribute it and/or modify
@rem it under the terms of the GNU Affero General Public License as publ... | Put MongoDB log files in the log folder | Put MongoDB log files in the log folder | Batchfile | agpl-3.0 | denkbar/step,denkbar/step,denkbar/step,denkbar/step,denkbar/step |
5436104b31feb889f107aa8f152e54b5d21fdd37 | build-exe.bat | build-exe.bat | msbuild /p:Configuration=Release NSISInfoWriter.sln
ilrepack /targetplatform:v4 ^
/out:target\nsisiw.exe ^
/parallel ^
"%~dp0\NSISInfoWriter\bin\Release\nsisiw.exe" ^
"%~dp0\NSISInfoWriter\bin\Release\CommandLine.dll" | msbuild /p:Configuration=Release NSISInfoWriter.sln
ilrepack /targetplatform:v4 ^
/out:target\nsisiw.exe ^
/parallel ^
/ndebug ^
"%~dp0\NSISInfoWriter\bin\Release\nsisiw.exe" ^
"%~dp0\NSISInfoWriter\bin\Release\CommandLine.dll" | Disable debug information generation when using ilrepack | Disable debug information generation when using ilrepack
| Batchfile | mit | segrived/NSISInfoWriter |
b36a50ce04994182ff2a6ca15118e678ba1c9dab | .jenkins-win.bat | .jenkins-win.bat |
md build
cd build
cmake -DLIBWS_WITH_AUTOBAHN=ON ..
cmake --build .
ctest
bin\Debug\autobahntest.exe --config ..\test\autobahn\libws.cfg
| cd deps
cd libevent
md build
cd build
cmake -DEVENT__DISABLE_TESTS=ON -DEVENT__DISABLE_REGRESS=ON -DEVENT__DISABLE_BENCHMARK=ON ..
cd ..
cd ..
cd ..
md build
cd build
cmake -DLibevent_DIR=deps/libevent/build/ -DLIBWS_WITH_AUTOBAHN=ON ..
cmake --build .
ctest
bin\Debug\autobahntest.exe --config ..\test\autobahn\libws... | Update the jenkins build to build Libevent. | Update the jenkins build to build Libevent.
| Batchfile | mit | couchbasedeps/libws,JoakimSoderberg/libws,couchbasedeps/libws,JoakimSoderberg/libws,JoakimSoderberg/libws,couchbasedeps/libws |
39a022200dd8b7aa9bb5eb7d5ffeb67d9a2e2076 | tests/runall.bat | tests/runall.bat | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
../../runVimTests/bin/runVimTests.cmd --pure vimgrep.suite
| @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
echo "usage: runall.bat clean|run"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
echo Running
../../runVimTests/bin/runVimTests.cmd --pure vimgre... | Add an option to clean the test directory | Add an option to clean the test directory
| Batchfile | unlicense | dkprice/vim-easygrep,dkprice/vim-easygrep |
24d10584a6f5db583c75dbb4dc191854a9ae5ea5 | trunk/build.bat | trunk/build.bat | @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| @echo off
echo.
echo James Build System
echo -------------------
set ANT_HOME=tools
set CLASSPATH=lib\xerces-1.4.3.jar;tools\lib\velocity-1.3-dev.jar;tools\lib\jdom-b7.jar
%ANT_HOME%\bin\ant.bat -emacs %1 %2 %3 %4 %5 %6 %7 %8
goto cleanup
:cleanup
set ANT_HOME=
| Use velocity and jdom that was copied from jakarta-site2 | Use velocity and jdom that was copied from jakarta-site2
git-svn-id: 88158f914d5603334254b4adf21dfd50ec107162@107714 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | aduprat/james,rouazana/james,chibenwa/james,aduprat/james,chibenwa/james,rouazana/james,aduprat/james,aduprat/james,rouazana/james,chibenwa/james,rouazana/james,chibenwa/james |
68a37529312d8b6836df4f0f796f14e26e2a0b80 | CSharp/Library/Microsoft.Bot.Builder.History/createpackage.cmd | CSharp/Library/Microsoft.Bot.Builder.History/createpackage.cmd | @echo off
echo *** Building Microsoft.Bot.Builder.History
setlocal
setlocal enabledelayedexpansion
setlocal enableextensions
set errorlevel=0
mkdir ..\nuget
erase /s ..\nuget\Microsoft.Bot.Builder.History*nupkg
msbuild /property:Configuration=release Microsoft.Bot.Builder.History.csproj
for /f %%v in ('powershell -no... | @echo off
echo *** Building Microsoft.Bot.Builder.History
setlocal
setlocal enabledelayedexpansion
setlocal enableextensions
set errorlevel=0
mkdir ..\nuget
erase /s ..\nuget\Microsoft.Bot.Builder.History*nupkg
msbuild /property:Configuration=release Microsoft.Bot.Builder.History.csproj
for /f %%v in ('powershell -no... | Update nuget commandline tool to 4.1.0 for bot.builder.history | Update nuget commandline tool to 4.1.0 for bot.builder.history
| Batchfile | mit | msft-shahins/BotBuilder,yakumo/BotBuilder,msft-shahins/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,stevengum97/BotBuilder,yakumo/BotBuilder,msft-shahins/BotBuilder,stevengum97/BotBuilder |
37ecd3a2d67d463167499d40c373f7a614975375 | apm-collector/apm-collector-worker/bin/collector-service.bat | apm-collector/apm-collector-worker/bin/collector-service.bat | @echo off
setlocal
set COLLECOTR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_BASE_PATH=%~dp0%..
set COLLECTOR_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%COLLECTOR_BASE_PATH%\config;
SET CLASSPATH=%COLLECTOR_BASE_PATH%\libs\*;%CLASSPATH%
if ""%JAVA_HOME%"" == """" (
set _EXECJAVA=java
) else (
set _E... | @echo off
setlocal
set COLLECOTR_PROCESS_TITLE=Skywalking-Collector
set COLLECTOR_BASE_PATH=%~dp0%..
set COLLECTOR_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%COLLECTOR_BASE_PATH%\config;
SET CLASSPATH=%COLLECTOR_BASE_PATH%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:"=%"\bin\java
)
... | Fix windows script start collector failure. | Fix windows script start collector failure.
| Batchfile | apache-2.0 | apache/skywalking,ascrutae/sky-walking,OpenSkywalking/skywalking,hanahmily/sky-walking,zhangkewei/sky-walking,apache/skywalking,ascrutae/sky-walking,apache/skywalking,ascrutae/sky-walking,apache/skywalking,hanahmily/sky-walking,OpenSkywalking/skywalking,apache/skywalking,ascrutae/sky-walking,zhangkewei/sky-walking,apac... |
d533a00235e2e93776a3823f6e34b8db4641ae2a | spf13-vim-windows-install.cmd | spf13-vim-windows-install.cmd | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
call git clone --recursive -b 3.0 git://github.com/spf13/spf13-vim.git "%BASE_DIR%"
call mkdir "%BASE_DIR%\.vim\bundle"
call mklink /J "%HOME%\.vim" "%BASE_DIR%\.vim"
call mklink "%HO... | @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%
@set BASE_DIR=%HOME%\.spf13-vim-3
IF NOT EXIST "%BASE_DIR%" (
call git clone --recursive -b 3.0 https://github.com/spf13/spf13-vim.git "%BASE_DIR%"
) ELSE (
@set ORIGINAL_DIR=%CD%
echo updating spf13-vim
ch... | Make Windows Installer more robust & auto updating | Make Windows Installer more robust & auto updating | Batchfile | apache-2.0 | jswk/spf13-vim,lhh411291769/spf13-vim,lightcn/spf13-vim,wongsyrone/spf13-vim,qingzew/spf13-vim,jadewizard/spf13-vim,IdVincentYang/spf13-vim,dawnsong/spf13-vim,darcylee/magic-vim,diogro/spf13-vim,fuhongxue/spf13-vim,carakan/supra-vim,huhuang03/spf13-vim,dawnsong/spf13-vim,xiaoDC/vim,zzzzzsh/spf13-vim,millerdw06/spf13-vi... |
a999cbea56c2c3964207645e81bed3ad847133a7 | deploy_win32.bat | deploy_win32.bat | @echo off
echo Compiling...
cd windeployqt
qmake windeployqt.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
cd ..
qmake presi-aoke.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
echo Copying files to staging
del /Q /S .\staging
mkdir... | @echo off
echo Compiling...
cd windeployqt
qmake windeployqt.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
cd ..
qmake presi-aoke.pro
IF ERRORLEVEL ==1 GOTO :ERROR
mingw32-make.exe release
IF ERRORLEVEL ==1 GOTO :ERROR
echo Copying files to staging
del /Q /S .\staging
mkdir... | Trim down the Windows installer size | Trim down the Windows installer size
| Batchfile | apache-2.0 | fhunleth/presi-aoki,fhunleth/presi-aoke,fhunleth/presi-aoke,fhunleth/presi-aoki |
4ac2bc77e3aa7542ef5e69d8b8f5cba5ff119862 | scripts/release_win.bat | scripts/release_win.bat | @echo off
if "%~1" == "" (
echo Usage: release_win.bat path-to-bin-folder
goto end
)
setlocal
set destroot=%cd%\%~1
set DESTDIR=
mkdir build
cd build
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\x64 -D COMPILER=ICC -G "Visual Studio 12 2013 Win64" ..
ICProjCon... | @echo off
if "%~1" == "" (
echo Usage: release_win.bat path-to-bin-folder
goto end
)
setlocal
set destroot=%cd%\%~1
set DESTDIR=
mkdir build
cd build
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\x64 -D COMPILER=ICC -G "Visual Studio 12 2013 Win64" ..
ICProjCon... | Check for errors regarding ICProjConvert150 | Check for errors regarding ICProjConvert150
| Batchfile | apache-2.0 | embree/embree,embree/embree,embree/embree,Sjoerdie/embree,embree/embree,Sjoerdie/embree,Sjoerdie/embree,Sjoerdie/embree |
884eff2759d71df29ef0d5627f9fcce003af3179 | Build/MakeSharpDX.CertificationTests.VS2013.cmd | Build/MakeSharpDX.CertificationTests.VS2013.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\vcvarsall.bat" x86
msbuild /tv:12.0 /p:BuildSignedSharpDX=false /t:RunCertificationTests /verbosity:quiet /clp:ErrorsOnly /fl /flp:Summary;Verbosity=minimal;logfile=BuildErrors.log;Append=true... | Fix path to SharpDX.build for certification tests. | [Build] Fix path to SharpDX.build for certification tests.
| Batchfile | mit | andrewst/SharpDX,fmarrabal/SharpDX,fmarrabal/SharpDX,jwollen/SharpDX,dazerdude/SharpDX,PavelBrokhman/SharpDX,RobyDX/SharpDX,VirusFree/SharpDX,VirusFree/SharpDX,VirusFree/SharpDX,RobyDX/SharpDX,manu-silicon/SharpDX,manu-silicon/SharpDX,PavelBrokhman/SharpDX,waltdestler/SharpDX,TechPriest/SharpDX,andrewst/SharpDX,Ixonos-... |
95bfcd3282e58861475db97e5f4ce0e5e83c416f | tests/runall.bat | tests/runall.bat | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
echo "usage: runall.bat clean|run"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
echo Running
../../runVimTests/bin/runVimTests.cmd --pure vimgre... | @ECHO off
REM This suite requires https://github.com/inkarkat/runVimTests to run
if %1.==clean. goto Clean
if %1.==run. goto Run
if %1.==runall. goto RunAll
echo "usage: runall.bat clean|run|runall"
goto End
:Clean
echo Cleaning
del /Q *.out 2> nul
del /Q *.msgout 2> nul
goto End
:Run
shift
echo Running %1 %2 %3 %... | Add an argument to run only certain tests | Add an argument to run only certain tests
| Batchfile | unlicense | dkprice/vim-easygrep,dkprice/vim-easygrep |
a66f00047350c11fbe9993d333c432c63a75f371 | context-menu-disable/context-menu-disable-tortoise-git.bat | context-menu-disable/context-menu-disable-tortoise-git.bat | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=TortoiseGit
reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\Background\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\shellex\ContextMe... | @echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=TortoiseGit
reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\Background\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Directory\shellex\ContextMe... | Disable tortoise git context menu on more types | Disable tortoise git context menu on more types
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
301e893ec5f971a1f978786974632e3bf6b05778 | Greedy/deploy.bat | Greedy/deploy.bat | call sbt assembly
del greedy.zip
java -jar out/proguard5.0/lib/proguard.jar @proguard.config
"C:\Program Files\7-Zip\7za.exe" a -tzip greedy.zip greedy.jar
PAUSE | call sbt assembly
del greedy.zip
java -jar out/proguard5.0/lib/proguard.jar @proguard.config
"C:\Program Files\7-Zip\7za.exe" a -tzip greedy.zip greedy.jar
del greedy.jar
PAUSE | Delete jar after packaging in zip | Delete jar after packaging in zip
| Batchfile | apache-2.0 | Oduig/swoc2014,Oduig/swoc2014,Oduig/swoc2014 |
887f0e2f6ff3763e0afc8bf3523be05085850a81 | scripts/ba.bat | scripts/ba.bat | rem ba.bat - download and build all of scintilla and scite
rd /s/q scintilla scite
cvs co scintilla scite
cd scintilla
call delbin
del/q bin\*.a
call delcvs
call zipsrc
cd win32
nmake -f scintilla.mak
cd ..
cd ..
cd scite
del/q bin\*.properties
del/q bin\SciTE
call delbin
call delcvs
call zipsrc
cd win32
nmake -f scite... | rem ba.bat - download and build all of scintilla and scite
rd /s/q scintilla scite
cvs co scintilla scite
cd scintilla
call delbin
del/q bin\*.a
call delcvs
call zipsrc
cd win32
nmake -f scintilla.mak
cd ..
del/q bin\*.pdb
cd ..
cd scite
del/q bin\*.properties
del/q bin\SciTE
call delbin
call delcvs
call zipsrc
cd win3... | Delete pdb files so they are not included in source zips. | Delete pdb files so they are not included in source zips.
| Batchfile | isc | R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone |
1e7d3e79f35285744da8dcb1694d8ad60b6bb8ca | build-windows.cmd | build-windows.cmd | for /f %%c in ('wmic cpu get NumberOfCores ^| findstr [0-9]') do set "CORES=%%c"
set SOURCE_DIR=%CD%
set BUILD_DIR=../build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt-Installation\Tools\QtCreator\bin\jom.exe /J %CORES%
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevC... | set BUILD_DIR=../build-sqlitewrapper
set CMAKE_BUILD_TYPE=Release
for /f %%c in ('wmic cpu get NumberOfCores ^| findstr [0-9]') do set "CORES=%%c"
set SOURCE_DIR=%CD%
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt-Installation\Tools\QtCreator\bin\jom.exe /J %CORES%
call "C:\Program Files (x86)\Microsoft Visual St... | Move build type variables to the top | Move build type variables to the top
to make merging of both build scripts easy
| Batchfile | bsd-3-clause | kullo/smartsqlite,kullo/smartsqlite,kullo/smartsqlite |
ff3031d37be93c96c47b4a37a31c1822a2af75dd | build-windows.cmd | build-windows.cmd | set SOURCE_DIR=%CD%
set BUILD_DIR=build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=mingw32-make.exe -j2
cd ..
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COMMAND% -G "MinGW Makefiles" "%SOURCE_DIR%" || goto error
%MAKE_COMMAND% || goto error
cd "%SOURCE_DIR%"
e... | set SOURCE_DIR=%CD%
set BUILD_DIR=build-sqlitewrapper
set CMAKE_COMMAND=cmake.exe
set MAKE_COMMAND=C:\Qt\Tools\QtCreator\bin\jom.exe /J 2
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"
cd ..
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COM... | Convert Windows build script to MSVC | Convert Windows build script to MSVC
| Batchfile | bsd-3-clause | kullo/smartsqlite,kullo/smartsqlite,kullo/smartsqlite |
3a6c458bb1444c70a832d54726cd5ee9b50d0551 | package/lib-openblas-0.2.19-universal/scripts.win/install.bat | package/lib-openblas-0.2.19-universal/scripts.win/install.bat | @echo off
rem
rem Extra installation script
rem
rem See CK LICENSE.txt for licensing details.
rem See CK Copyright.txt for copyright details.
rem
rem Developer(s): Grigori Fursin, 2016-2017
rem
rem ############################################################
echo.
echo Preparing vars ...
cd %INSTALL_DIR%\%PACKAGE_SU... | @echo off
rem
rem Extra installation script
rem
rem See CK LICENSE.txt for licensing details.
rem See CK Copyright.txt for copyright details.
rem
rem Developer(s): Grigori Fursin, 2016-2017
rem
rem ############################################################
echo.
echo Preparing vars ...
cd %INSTALL_DIR%\%PACKAGE_SU... | Fix OpenBLAS build on Windows | Fix OpenBLAS build on Windows
| Batchfile | bsd-3-clause | ctuning/ck-math,ctuning/ck-math,ctuning/ck-math,ctuning/ck-math |
82726799c528522999154b6377e62d71567197da | native_client_sdk/src/sdktry.bat | native_client_sdk/src/sdktry.bat | @echo off
:: Copyright (c) 2012 The The Chromium Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
:: TODO(noelallen) Share list with POSIX
gcl try %* -b naclsdkm-mac -b naclsdkm-linux -b naclsdkm-linux ^
-b naclsd... | @echo off
:: Copyright (c) 2012 The The Chromium Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
:: TODO(noelallen) Share list with POSIX
gcl try %* -b naclsdkm-mac -b naclsdkm-linux -b naclsdkm-pnacl-linux ^
-b ... | Fix Windows bat file for SDK try | Fix Windows bat file for SDK try
The script currently does not run tries, since the try mechanism rejects
the entire request if any requrest bot is bogus.
Review URL: https://chromiumcodereview.appspot.com/10854028
git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@150839 0039d316-1c4b-4281-b951-d872f2087c98
| Batchfile | bsd-3-clause | Pluto-tv/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,PeterWangIntel/chromium-crosswalk,zcbenz/cefode-chromium,junmin-zhu/chromium-rivertrail,dushu1203/chromium.src,Just-D/chromium-1,Chilledheart/chromium,fujunwei/chromium-crosswalk,nacl-webkit/chrome_deps,Chilledheart/chromium,Just-D/chromium-1,hujiajie/pa-c... |
5b063a9117ba211460fa7e6b8356770080f97c3b | src/System.Private.ServiceModel/tools/scripts/BuildCertUtil.cmd | src/System.Private.ServiceModel/tools/scripts/BuildCertUtil.cmd | @echo off
setlocal
if not defined VisualStudioVersion (
if defined VS140COMNTOOLS (
call "%VS140COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
if defined VS120COMNTOOLS (
call "%VS120COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
echo Error: %~nx0 requires Visual Studio 2013 or ... | @echo off
setlocal
if not defined VisualStudioVersion (
if defined VS160COMNTOOLS (
call "%VS160COMNTOOLS%\VsDevCmd.bat"
goto :EnvSet
)
echo Error: %~nx0 requires Visual Studio 2019 because the .NET Core 3.0 SDK is needed.
echo Please see https://github.com/dotnet/wcf/blob/maste... | Fix script to require VS 2019. | Fix script to require VS 2019.
* Since converting to .NET 3.0 SDK projects we now need that SDK in order to build.
| Batchfile | mit | StephenBonikowsky/wcf,imcarolwang/wcf,dotnet/wcf,mconnew/wcf,imcarolwang/wcf,mconnew/wcf,dotnet/wcf,StephenBonikowsky/wcf,mconnew/wcf,dotnet/wcf,imcarolwang/wcf |
5a0d499bffb7891b0c4148226e8c0d68d0e816a0 | finishpackage.bat | finishpackage.bat | set S7Z=%~dp0.\bin\7za.exe
mkdir Package
copy Source\*.txt Package\
copy Source\*LICENSE* Package\
copy Source\*README* Package\
"%S7Z%" x -oPackage Build\package-*.7z
echo [Paths]>>Package\bin\qt.conf
echo Prefix=..>>Package\bin\qt.conf
pushd Package\include
for /f "delims=" %%D in ('dir /ad /b /s ^| sort... | set S7Z=%~dp0.\bin\7za.exe
mkdir Package
copy Source\*.txt Package\
copy Source\*LICENSE* Package\
copy Source\*README* Package\
"%S7Z%" x -oPackage Build\package-*.7z
echo [Paths]>>Package\bin\qt.conf
echo Prefix=..>>Package\bin\qt.conf
pushd Package\include
for /f "delims=" %%D in ('dir /ad /b /s ^| sort... | Update script, seems to work for Qt-5.7.0 now. | Update script, seems to work for Qt-5.7.0 now.
| Batchfile | apache-2.0 | MrHacky/qt-package-builder |
2b11cc9de601c61ba2e821633790d07c3c9756ee | scripts/make-package.bat | scripts/make-package.bat | @echo off
set zipcmd=%~dp0\tools\7z\7z.exe
pushd %~dp0\..\..
%zipcmd% a -r -x!scripts -xr!.* -x!__pycache__ -x!docs -x!README.md blenderseed-x.x.x.zip blenderseed
popd
move ..\..\blenderseed-x.x.x.zip .
pause
| @echo off
set zipcmd="%~dp0\tools\7z\7z.exe"
pushd %~dp0\..\..
%zipcmd% a -r -x!scripts -xr!.* -x!__pycache__ -x!docs -x!README.md blenderseed-x.x.x.zip blenderseed
popd
move ..\..\blenderseed-x.x.x.zip .
pause
| Tweak packaging script for spaces in filenames | Tweak packaging script for spaces in filenames
| Batchfile | mit | appleseedhq/blenderseed,appleseedhq/blenderseed,dictoon/blenderseed,dictoon/blenderseed |
eb65caf42668fa83b4cc12823ebefd2ffb164155 | winpull.bat | winpull.bat | @echo off
REM Emacs
XCOPY /Y emacs\.emacs "%APPDATA%\.emacs"
REM nano
XCOPY /Y nano\.nanorc "%USERPROFILE%\.nanorc"
REM Vim
XCOPY /Y vim\.vimrc "%USERPROFILE%\.vimrc"
REM bash
XCOPY /Y bash\.bashrc "%USERPROFILE%\.bashrc"
XCOPY /Y bash\.bash_aliases "%USERPROFILE%\.bash_aliases"
REM Sublime Text 3
MKDIR "%APPDATA%... | Add functional Windows pull script | Add functional Windows pull script
| Batchfile | mit | mincardona/mincardona-cfg,mincardona/mincardona-cfg,mincardona/mincardona-cfg,mincardona/mincardona-cfg,mincardona/mincardona-cfg | |
ad116ceea8432ea8f0c1e952ad2836011782536f | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | Games/Other/Oxide.Game.Nomad/Files/Windows/_start-example.bat | @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.607" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| @echo off
cls
:start
echo Starting server...
"Nomad Server\NomadServer.exe" -name "My Oxide Server" -port 5127 -slots 10 -clientVersion "0.608" -password "" -tcpLobby "149.202.51.185" 25565
echo.
echo Restarting server...
echo.
goto start
| Patch for version 0.608 update | [Nomad] Patch for version 0.608 update
| Batchfile | mit | LaserHydra/Oxide,LaserHydra/Oxide,Visagalis/Oxide,Nogrod/Oxide-2,Nogrod/Oxide-2,Visagalis/Oxide |
3c65fe36dd229cb89e4a9638d001c2b676ef66b2 | package/dataset-imagenet-preprocessed-using-pillow/shell_wrapper.bat | package/dataset-imagenet-preprocessed-using-pillow/shell_wrapper.bat | rem
rem CK wrapper for preprocessing the ImageNet dataset using Pillow.
rem
rem See CK LICENSE.txt for licensing details.
rem rem See CK COPYRIGHT.txt for copyright details.
rem rem
rem rem Developer(s):
rem rem - Anton Lokhmotov, anton@dividiti.com, 2020
rem
echo Preprocessing ImageNet using Pillow ...
"%CK_ENV_COMP... | Add Windows wrapper for preprocessing ImageNet using Pillow. | Add Windows wrapper for preprocessing ImageNet using Pillow.
| Batchfile | bsd-3-clause | ctuning/ck-env,ctuning/ck-env,ctuning/ck-env,ctuning/ck-env,ctuning/ck-env,ctuning/ck-env,ctuning/ck-env,ctuning/ck-env | |
84efc1f4e3f484253116ca3dacf2f4e8bd786474 | windows/build.bat | windows/build.bat | @echo on
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode microsoft-build-tools visualstudio2015community p4merge dotnet4.5 ruby nodejs.install stylecop conemu dejavufonts
call refreshenv
wget -c https://cygwin.com/setup-x86_64.exe
... | @echo on
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode p4merge dotnet4.5 ruby nodejs.install stylecop conemu dejavufonts ag
call refreshenv
wget -c https://cygwin.com/setup-x86_64.exe
setup-x86_64.exe -R "C:\cygwin64" -s http://m... | Add more lightweigth tools instead of full VS suite | Add more lightweigth tools instead of full VS suite
| Batchfile | agpl-3.0 | cyplo/dotfiles,cyplo/dotfiles |
4b3452f3a74dbabcdf70f94dab7d8db244a5227b | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat | @echo off
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
@powershell -Command "java -cp \"..\lib\*\" %DEBUG_OPTS% \"-Daerobase.config.dir=%CONFIG%\" org.jboss.aerogear.unifiedpush.DBMaintenance"
GOTO End1
:No1
EC... | @ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
@powershell -Command "java -cp '..\lib\*' %DEBUG_OPTS% \"-Daerobase.config.dir=%CONFIG%\" org.jboss.aerogear.unifiedpush.DBMaintenance"
GOTO End1
:No1
ECHO... | Revert usage to power shell | Revert usage to power shell
| Batchfile | apache-2.0 | aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server |
efe8f21d839883934aeb0cacee0366016cd80888 | openmole/bin/openmole/resources/openmole.bat | openmole/bin/openmole/resources/openmole.bat | set PWD=%~dp0
start /MIN "%PWD%dbserver\bin\openmole-dbserver.bat"
mkdir "%UserProfile%\.openmole\.tmp"
set ran="%UserProfile%\.openmole\.tmp\%random%"
java -d64 -version >nul 2>&1
if errorlevel 1 goto is32bit
set FLAG="-XX:+UseCompressedOops"
:is32bit
java -Dosgi.locking=none -Dopenmole.location="%PWD%\" -Dosgi.classl... | set startdir=%cd%
set PWD=%~dp0
cd /d %~dp0
start /MIN dbserver\bin\openmole-dbserver.bat
cd %cd%
mkdir "%UserProfile%\.openmole\.tmp"
set ran="%UserProfile%\.openmole\.tmp\%random%"
java -d64 -version >nul 2>&1
if errorlevel 1 goto is32bit
set FLAG="-XX:+UseCompressedOops"
:is32bit
java -Dosgi.locking=none -Dopenmole.... | Fix launch script for windows. | Fix launch script for windows.
| Batchfile | agpl-3.0 | openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole |
37b3b244594a7af71e13bfdb78e1609a09f450db | RelUI/lib/copy.bat | RelUI/lib/copy.bat | copy ..\..\..\Rel\_Deployment\RelDBMS.jar .
copy ..\..\..\Rel\_Deployment\commons-codec-1.4.jar .
copy ..\..\..\Rel\_Deployment\commons-logging-1.1.1.jar .
copy ..\..\..\Rel\_Deployment\ecj-4.4.2.jar .
copy ..\..\..\Rel\_Deployment\httpclient-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\httpclient-cache-4.1.3.jar .
copy .... | copy ..\..\..\Rel\_Deployment\RelDBMS.jar .
copy ..\..\..\Rel\_Deployment\commons-codec-1.4.jar .
copy ..\..\..\Rel\_Deployment\commons-logging-1.1.1.jar .
copy ..\..\..\Rel\_Deployment\ecj-4.4.2.jar .
copy ..\..\..\Rel\_Deployment\httpclient-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\httpclient-cache-4.1.3.jar .
copy .... | Fix reference to Berkeley Java DB .jar file | Fix reference to Berkeley Java DB .jar file | Batchfile | apache-2.0 | DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel,DaveVoorhis/Rel |
5a2c5063d014c75e2a44842fb385f6253f0155e1 | src/win2k/winpmc/instpmcfre.bat | src/win2k/winpmc/instpmcfre.bat | copy /B objfre\i386\winpmc.sys c:\winnt\system32\drivers
ntaddsvc winpmc
net start winpmc | copy /B objfre_wnet_x86\i386\winpmc.sys c:\winnt\system32\drivers
ntaddsvc winpmc
net start winpmc | Update directory tree for latest install of ddkbuild | Update directory tree for latest install of ddkbuild
| Batchfile | bsd-3-clause | pyrovski/papi,pyrovski/papi,arm-hpc/papi,pyrovski/papi,pyrovski/papi,arm-hpc/papi,arm-hpc/papi,arm-hpc/papi,pyrovski/papi,arm-hpc/papi,arm-hpc/papi,pyrovski/papi,pyrovski/papi,arm-hpc/papi,pyrovski/papi |
e88f2709ab9345429c5803c2bb55144fd3b35365 | prep-package.cmd | prep-package.cmd | cd /d %~dp0
mkdir OSVR-Unity-Dist
mkdir OSVR-Unity-Dist\src
mkdir OSVR-Unity-Dist\src\OSVR-Unity
mkdir OSVR-Unity-Dist\src\Managed-OSVR
xcopy Managed-OSVR OSVR-Unity-Dist\src\Managed-OSVR /Y /S
xcopy OSVR-Unity OSVR-Unity-Dist\src\OSVR-Unity /Y /S
| cd /d %~dp0
mkdir OSVR-Unity-Dist
mkdir OSVR-Unity-Dist\src
mkdir OSVR-Unity-Dist\src\OSVR-Unity
mkdir OSVR-Unity-Dist\src\Managed-OSVR
xcopy Managed-OSVR OSVR-Unity-Dist\src\Managed-OSVR /Y /S
xcopy OSVR-Unity OSVR-Unity-Dist\src\OSVR-Unity /Y /S
rem the -F 0x4 is to turn off smartypants.
third-party/disco... | Convert the README file to HTML and include it in the bundle. | Convert the README file to HTML and include it in the bundle.
| Batchfile | apache-2.0 | OSVR/OSVR-Unity,DuFF14/OSVR-Unity,JeroMiya/OSVR-Unity,grobm/OSVR-Unity,grobm/OSVR-Unity |
8b42846372c1fe6d0694c3e9b44dd6e5f93670f3 | FileSyncandWOPI/Source/Scripts/MS-ONESTORE/RunMSONESTORE_S02_TC06.cmd | FileSyncandWOPI/Source/Scripts/MS-ONESTORE/RunMSONESTORE_S02_TC06.cmd | @echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ONESTORE.S02_OneNoteRevisionStore.MSONESTORE_S02_TC06_LoadOneNoteWithAlternativePackaging /testcontainer:..\..\MS-ONESTORE\TestSuite\bin\Debug\MS-ONESTORE_TestSuite.dll /runconfig:..\..\MS-ONESTORE\MS-ONESTORE.testsettings /un... | Add cmd script to run the new single test case | Add cmd script to run the new single test case
| Batchfile | mit | OfficeDev/Interop-TestSuites,OfficeDev/Interop-TestSuites,OfficeDev/Interop-TestSuites | |
119fa315d6f8362c008d08f20cddbd55d8787f11 | deploy.bat | deploy.bat | @echo off
::Move into chrome directory, zip it, then return here.
cd chrome && call "7-zip.bat" && cd ..
::Merge psdle.js, psdle.user.js, and psdle.min.js to gh-pages.
call "deploy-sync.bat"
pause | ::This is a near full-circle deployment script for PSDLE.
::It does two major things:
:: - ./chrome/7-zip.bat - Zip up the PSDLE chrome extension properly for the webstore (and then opens the webstore for uploading).
:: - ./deploy-sync.bat - Copy psdle.js, psdle.user.js, and psdle.min.js to the gh-pages branch for eve... | Deploy - Open webstore editing page. | Deploy - Open webstore editing page.
Also a comment describing its purpose.
| Batchfile | mit | RePod/psdle |
726f3d5d5ad52585cbb83dff625e566a60eaff62 | build/buildNuget.XSerializer.bat | build/buildNuget.XSerializer.bat | msbuild /p:Configuration=Build ..\XSerializer\XSerializer.csproj
ildasm ..\XSerializer\bin\Build\XSerializer.dll /out:..\XSerializer\bin\Build\XSerializer.il
ren ..\XSerializer\bin\Build\XSerializer.dll ..\XSerializer\bin\Build\XSerializer.dll.orig
ilasm ..\XSerializer\bin\Build\XSerializer.il /res:..\XSerializer\bin\... | msbuild /p:Configuration=Build ..\XSerializer\XSerializer.csproj
ildasm ..\XSerializer\bin\Build\XSerializer.dll /out:..\XSerializer\bin\Build\XSerializer.il
ren ..\XSerializer\bin\Build\XSerializer.dll XSerializer.dll.orig
ilasm ..\XSerializer\bin\Build\XSerializer.il /res:..\XSerializer\bin\Build\XSerializer.res /dl... | Fix ren command in build script | Fix ren command in build script
Second parameter is the file name - the path can't be changed.
| Batchfile | mit | QuickenLoans/XSerializer |
664a7c6ae5675db934eb90ec7d5acd16b8639603 | run.bat | run.bat | @echo off
REM StarBot run script for Windows.
REM Get latest version and star bot.
echo Updating...
git pull
echo Starting bot...
python main.py
REM Loop back again.
goto start
| Add script to start bot on Windows | Add script to start bot on Windows
| Batchfile | apache-2.0 | dhinakg/BitSTAR,StarbotDiscord/Starbot,dhinakg/BitSTAR,StarbotDiscord/Starbot | |
b2de19d1d383f1cc04a8bbfd961b973f29a3d686 | build_tools/jenkins_win32_build.bat | build_tools/jenkins_win32_build.bat | cd %WORKSPACE%
set PYTHON=c:\python26\python
set EASY_INSTALL=c:\python26\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=c:\python26;c:\mingw\bin;%PATH%
echo %SVN_REVISION%> svn_revision.txt
%PYTHON% check_packages.py
set PYTHONPATH=%WORKSPACE%\sansview-install;%... | Add jenkins script for windows | Add jenkins script for windows
| Batchfile | bsd-3-clause | SasView/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,SasView/sasview,lewisodriscoll/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview | |
4bb9dbc4c4ea906e3ff4bc55cf781a06bf1a7518 | recipes/tcplotter/bld.bat | recipes/tcplotter/bld.bat | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=... | :: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=... | Fix typo for Windows build | Fix typo for Windows build
| Batchfile | bsd-3-clause | jakirkham/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes |
9e95775727429dbbd62512a9521350524b919b2d | Build.bat | Build.bat | @if defined ECHO (echo %ECHO%) else (echo off)
REM
REM Builds everything and drops it into the Build folder.
REM You may specify additional arguments for MetaBuild also.
REM
"%~dp0tools\MetaBuild\bin\MetaBuild.bat" /rootdir "%~dp0." /metabuildconfig "%~dp0bin\MetaBuild.config.custom" %*
| @if defined ECHO (echo %ECHO%) else (echo off)
REM
REM Builds everything and drops it into the Build folder.
REM You may specify additional arguments for MetaBuild also.
REM
"%~dp0tools\MetaBuild\bin\MetaBuild.bat" /rootdir "%~dp0" /metabuildconfig "%~dp0bin\MetaBuild.config.custom" %*
| Revert previous change. Bug is actually elsewhere. | Revert previous change. Bug is actually elsewhere.
| Batchfile | apache-2.0 | Gallio/mbunit-v3,Gallio/mbunit-v3,xJom/mbunit-v3,ajayanandgit/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,ajayanandgit/mbunit-v3,ajayanandgit/mbunit-v3,xJom/mbunit-v3,xJom/mbunit-v3,ajayanandgit/mbunit-v3,mterwoord/mbunit-v3,mterwoord/mbunit-v3,Gallio/mbunit-v3,ajayanandgit... |
ab3b0d54f6f660719649237cedcc9c77789efad9 | scripts/sonarqube-scan.cmd | scripts/sonarqube-scan.cmd | mvn clean jacoco:prepare-agent verify jacoco:report -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| mvn clean jacoco:prepare-agent verify jacoco:report sonar:sonar -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
| Add missing `sonar:sonar` for windows script | Add missing `sonar:sonar` for windows script | Batchfile | apache-2.0 | excella-core/excella-core |
3a7047da7bc30f45445771a105eb4d774163e16a | build_tools/jenkins_win_pylint.bat | build_tools/jenkins_win_pylint.bat |
set PYTHON=c:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set PATH=c:\python27;c:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
del /F test\sasview.txt
%PYLINT% --rcfile "%WORKSPACE%/build_tools/pylint.rc" -... |
set PYTHON=c:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set PATH=c:\python27;c:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
%PYLINT% --rcfile "%WORKSPACE%cd /build_tools/pylint.rc" -f parseable sasview-inst... | Update new windows pylint script | Update new windows pylint script
| Batchfile | bsd-3-clause | SasView/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview,SasView/sasview |
a50e39083199867eb8d6ae1d61d84b0b2d04a157 | go.bat | go.bat | @echo off
SET "memParams=-Xms4g -Xmx10g"
SET debugParams=
SET "rf2Archive=G:\incoming\SnomedCT_RF2Release_INT_20160131.zip"
SET "secondDrive=D:\"
SET newMemory=
set /p newMemory="How much memory do you have available? [10g]: "
IF NOT [%newMemory%]==[] SET "memParams=-Xms4g -Xmx%newMemory%"
SET driveParam=
set /p dri... | @echo off
SET "memParams=-Xms4g -Xmx10g"
SET debugParams=
SET "rf2Archive=G:\incoming\SnomedCT_RF2Release_INT_20160131.zip"
SET "secondDrive=D:\"
SET newMemory=
set /p newMemory="How much memory do you have available? [10g]: "
IF NOT [%newMemory%]==[] SET "memParams=-Xms4g -Xmx%newMemory%"
SET driveParam=
set /p dri... | Add question mark for questions | Add question mark for questions
| Batchfile | apache-2.0 | IHTSDO/rf2-to-rf1-conversion,IHTSDO/rf2-to-rf1-conversion |
6c596b91eef08a4f2818b84306155ec69752e867 | build.cmd | build.cmd | @ECHO OFF
ECHO.
ECHO APPVEYOR_BUILD_NUMBER : %APPVEYOR_BUILD_NUMBER%
ECHO APPVEYOR_BUILD_VERSION : %APPVEYOR_BUILD_VERSION%
:: ensure we have Version.txt
IF NOT EXIST Version.txt (
ECHO Version.txt is missing!
GOTO error
)
:: get the version and comment from Version.txt lines 2 and 3
SET RELEASE=
SET COMMENT=
FOR ... | @ECHO OFF
ECHO.
ECHO APPVEYOR_BUILD_NUMBER : %APPVEYOR_BUILD_NUMBER%
ECHO APPVEYOR_BUILD_VERSION : %APPVEYOR_BUILD_VERSION%
:: ensure we have Version.txt
IF NOT EXIST Version.txt (
ECHO Version.txt is missing!
GOTO error
)
:: get the version and comment from Version.txt lines 2 and 3
SET RELEASE=%APPVEYOR_BUILD_VE... | Set default version to .yml file | Set default version to .yml file
| Batchfile | mit | j2jensen/CallMeMaybe |
55d13312e48f086f3f2dbd35874d561fc387ee39 | writeGitVersionHeader.bat | writeGitVersionHeader.bat | @echo off
REM Windows batch script wrapper around the writeGitVersionHeader.sh bash script
REM Author: Peter Nordin
REM Date: 2017-02-07
set filepath="%~1"
set name="%~2"
set rev="%~3"
set shorthash="%~4"
REM Check where git bash is installed and use it
if defined ProgramFiles(x86) (
REM Check for 32-bit version, ... | Add .bat wrapper around version header generation script | Add .bat wrapper around version header generation script
| Batchfile | apache-2.0 | Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan | |
109fd60bbe5c05434431b29a3deb41345fb587b4 | SharePoint/Source/Scripts/MS-ADMINS/RunMSADMINS_S01_TC29_CreateSiteSuccessfully_WithoutTemplate.cmd | SharePoint/Source/Scripts/MS-ADMINS/RunMSADMINS_S01_TC29_CreateSiteSuccessfully_WithoutTemplate.cmd | @echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ADMINS.S01_CreateAndDeleteSite.MSADMINS_S01_TC29_CreateSiteSuccessfully_WithoutTemplate /testcontainer:..\..\MS-ADMINS\TestSuite\bin\Debug\MS-ADMINS_TestSuite.dll /runconfig:..\..\MS-ADMINS\MS-ADMINS.testsettings /unique
pause | Add CMD file for new cases | Add CMD file for new cases
| Batchfile | mit | XinwLi/Interop-TestSuites-1,XinwLi/Interop-TestSuites-1,OfficeDev/Interop-TestSuites,XinwLi/Interop-TestSuites-1,OfficeDev/Interop-TestSuites,OfficeDev/Interop-TestSuites | |
503e6ba4a3061f7c8a86a2be01255addd9589785 | jamberoo-libs/mvn_install_libs.bat | jamberoo-libs/mvn_install_libs.bat | mvn install:install-file -DgroupId=jamberoo -DartifactId=bsh-2.0b4 -Dversion=1.0 -Dpackaging=jar -Dfile=./bsh-2.0b4.jar
mvn install:install-file -DgroupId=jamberoo -DartifactId=cct-globus -Dversion=1.0 -Dpackaging=jar -Dfile=./cct-globus.jar
mvn install:install-file -DgroupId=jamberoo -DartifactId=Fragments -Dversion=1... | Add windows batch file to install jamberoo libs | Add windows batch file to install jamberoo libs
| Batchfile | apache-2.0 | SciGaP/seagrid-rich-client,SciGaP/seagrid-rich-client,SciGaP/seagrid-rich-client | |
e5b8015fc59ff6be0f2a7b9bed42e3f6a1d83867 | kokoro/windows/continuous-cmake.bat | kokoro/windows/continuous-cmake.bat | CD git/re2 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Debug -A x64 . || EXIT /B 1
cmake --build . --config Debug --clean-first || EXIT /B 1
ctest -C Debug --output-on-failure -E dfa^|exhaustive^|random || EXIT ... | CD git/re2 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Debug -G "Visual Studio 12 2013" -A x64 . || EXIT /B 1
cmake --build . --config Debug --clean-first || EXIT /B 1
ctest -C Debug --output-on-failure -E dfa^|exhaustive^|random ... | Use MSVC 2013 for continuous integration. | Use MSVC 2013 for continuous integration.
We claim to support it, so we should ensure
that we actually support it. ;)
Fixes #112.
Change-Id: Ia1fd23eb0e6f83ead453306be0b203782d62fd1c
Reviewed-on: https://code-review.googlesource.com/7492
Reviewed-by: Paul Wankadia <62d4e38bb1380f055ec4b899baa75e52af09c5f7@google.com... | Batchfile | bsd-3-clause | google/re2,google/re2,google/re2,google/re2,google/re2 |
8366390d50588a593544f69402e005377db4faf8 | tools/localCheckinGate.cmd | tools/localCheckinGate.cmd | @ECHO OFF
git status
ECHO.=========================================== WARNING ===========================================
ECHO.This will call git clean, all untracked change will be lost. Use Ctrl+C to break.
ECHO.=========================================== WARNING ===========================================
PAUSE
call... | Add a simple local checkin gate | Add a simple local checkin gate
| Batchfile | mit | karolz-ms/diagnostics-eventflow | |
8a9b130ccba7be82e54d76c9ae2ad4c140624def | runUnitTests.bat | runUnitTests.bat | @echo off
SETLOCAL EnableDelayedExpansion
set failed=0
cd bin
for /r "." %%a in (tst_*.exe) do (
"%%~fa"
if not ERRORLEVEL 0 (
echo Test FAILED: "%%~fa"
set failed=1
)
)
cd ..
if %failed% EQU 1 (
echo ERROR: At least one unit test failed!
if "%HOPSAN_BUILD_SCRIPT_NOPAUSE%" == "" (
pause
)
e... | Add unit test bat script | Add unit test bat script
| Batchfile | apache-2.0 | Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan | |
e834948f8cc84ba1fc057daf378c49157eedf4e2 | build-release-all.cmd | build-release-all.cmd | @echo off
@echo .
@echo ..
@echo ...
@echo Running full Build Script, capturing output to buildlog.txt file...
@echo Start Time: %time%
build-support\tools\nant\bin\nant clean package -f:spring.build -D:project.build.sign=true -D:mstest.exe="c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\mstest.e... | Add build release convenience script | Add build release convenience script
| Batchfile | apache-2.0 | spring-projects/spring-net,kvr000/spring-net,zi1jing/spring-net,dreamofei/spring-net,kvr000/spring-net,yonglehou/spring-net,zi1jing/spring-net,kvr000/spring-net,spring-projects/spring-net,likesea/spring-net,yonglehou/spring-net,djechelon/spring-net,likesea/spring-net,yonglehou/spring-net,likesea/spring-net,dreamofei/sp... | |
74d7c9ed7f01114cbdae8168013b47b89aaab18a | runbuild.cmd | runbuild.cmd | @@@ setlocal
@@@ for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set msbuild=%windir%\Microsoft.NET\Framework\%%i\msbuild.exe
@@@ if not defined msbuild (echo MSBuild.exe not found>&2 & exit /b 42)
@@@ if defined msbuild "%msbuild%" ... | @echo off
setlocal
for %%a in (%*) do echo "%%a" | findstr /C:"mono">nul && set buildtool=xbuild.bat
if not defined buildtool for /f %%i in ('dir /b /ad /on "%windir%\Microsoft.NET\Framework\v*"') do @if exist "%windir%\Microsoft.NET\Framework\%%i\msbuild".exe set buildtool=%windir%\Microsoft.NET\Framework\%%i\msbuild.... | Build using xbuild on Windows for mono | Build using xbuild on Windows for mono
| Batchfile | mit | ChrisMaddock/nunit,jeremymeng/nunit,jhamm/nunit,ggeurts/nunit,jeremymeng/nunit,jadarnel27/nunit,jadarnel27/nunit,ArsenShnurkov/nunit,nunit/nunit,agray/nunit,Suremaker/nunit,akoeplinger/nunit,elbaloo/nunit,cPetru/nunit-params,pcalin/nunit,appel1/nunit,passaro/nunit,ArsenShnurkov/nunit,JohanO/nunit,jnm2/nunit,pcalin/nuni... |
65791a6336bce3b7f2fd93b099f6bda70bb73fab | tsx/msvcbuild.bat | tsx/msvcbuild.bat | @setlocal
@set SCHEME_H_DIR=..\src
@set TSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DUSE_DL=1 /I%SCHEME_H_DIR%
@set TSLIB=lib /nologo
@set TSLINK=link /nologo
@if "%1" == "static" goto STATIC
@if not exist dll\ (
mkdir dll
)
%TSCOMPILE% /MT tsx.c
%TSLINK% /DLL /out:dll\tsx.dll /e... | Add a batch file to build on Windows with MSVC. | Add a batch file to build on Windows with MSVC.
| Batchfile | mit | ignorabimus/tinyscheme,ignorabimus/tinyscheme | |
e7f7a6dc3c610a4efdee592b49491217fc237184 | .buildkite/sign_windows_installer.bat | .buildkite/sign_windows_installer.bat | @echo off
rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent.
rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact.
set current_path=%cd%
buildkite-agent.exe artifact download "installer/*.exe... | @echo off
rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent.
rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact.
set current_path=%cd%
buildkite-agent.exe artifact download "installer/*.exe... | Fix installer uploaded artifact filename. | Fix installer uploaded artifact filename.
| Batchfile | mit | lyw07/kolibri,benjaoming/kolibri,jonboiser/kolibri,benjaoming/kolibri,learningequality/kolibri,DXCanas/kolibri,benjaoming/kolibri,jonboiser/kolibri,learningequality/kolibri,mrpau/kolibri,indirectlylit/kolibri,indirectlylit/kolibri,mrpau/kolibri,DXCanas/kolibri,indirectlylit/kolibri,jonboiser/kolibri,mrpau/kolibri,lyw07... |
b6812c5f48220b78904470dd8ba224372634a155 | build/windows/checkout-banshee.bat | build/windows/checkout-banshee.bat | REM This script will checkout Banshee from git (and a few submodules that are needed).
REM It will result in a banshee/ directory under where it's launched from.
REM See banshee\build\windows\README.txt for more information
REM (this file is tracked in version control at: http://git.gnome.org/browse/banshee/plain/build... | REM This script will checkout Banshee from git (and a few submodules that are needed).
REM It will result in a banshee/ directory under where it's launched from.
REM See banshee\build\windows\README.txt for more information
REM (this file is tracked in version control at: http://git.gnome.org/browse/banshee/plain/build... | Clean output of the checkout script | windows: Clean output of the checkout script
Don't echo the commands that are run, and don't print the error message
if everything worked.
| Batchfile | mit | babycaseny/banshee,GNOME/banshee,stsundermann/banshee,stsundermann/banshee,Dynalon/banshee-osx,GNOME/banshee,arfbtwn/banshee,ixfalia/banshee,Carbenium/banshee,ixfalia/banshee,arfbtwn/banshee,dufoli/banshee,dufoli/banshee,mono-soc-2011/banshee,stsundermann/banshee,Dynalon/banshee-osx,Dynalon/banshee-osx,Carbenium/banshe... |
2cf219dc85366eceb308321192349385b296c788 | 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/185e757b03239f556e73bead91b261f5fe3c8004
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/3076c2ce36a3e11a71ea092098a40b11cb55d548
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %coun... | Update to kuduscript version 0.1.7 | Update to kuduscript version 0.1.7
| Batchfile | apache-2.0 | dev-enthusiast/kudu,kali786516/kudu,kenegozi/kudu,kali786516/kudu,shrimpy/kudu,sitereactor/kudu,projectkudu/kudu,badescuga/kudu,badescuga/kudu,mauricionr/kudu,juvchan/kudu,juoni/kudu,barnyp/kudu,shibayan/kudu,juvchan/kudu,uQr/kudu,oliver-feng/kudu,puneet-gupta/kudu,chrisrpatterson/kudu,projectkudu/kudu,shibayan/kudu,ju... |
835f1d5a28584e18dfa0a03aa121f251570a81ae | 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/SublimeJsPrettier,jonlabelle/SublimeJsPrettier |
09184318cb6302041a219603b61a6824fdc4a322 | bin/append.bat | bin/append.bat | if "%ACC%" == "" goto emptyacc
if "%SEPARATOR%" == "" goto noseparator
set ACC=%ACC%%SEPARATOR%%1
goto end
:noseparator
set ACC=%ACC% %1
goto end
:emptyacc
set ACC=%1
goto end
:end | if not defined ACC goto emptyacc
if "%SEPARATOR%" == "" goto noseparator
set ACC=%ACC%%SEPARATOR%%1
goto end
:noseparator
set ACC=%ACC% %1
goto end
:emptyacc
set ACC=%1
goto end
:end | Support = signs in accumulator. | Support = signs in accumulator.
| Batchfile | apache-2.0 | jagguli/intellij-community,ahb0327/intellij-community,Distrotech/intellij-community,da1z/intellij-community,gnuhub/intellij-community,FHannes/intellij-community,lucafavatella/intellij-community,samthor/intellij-community,FHannes/intellij-community,salguarnieri/intellij-community,consulo/consulo,diorcety/intellij-commun... |
a7b8470883772d1014927ec2b0e22f7c07521db7 | zephir.bat | zephir.bat | @echo off
REM This file is part of the Zephir.
REM
REM (c) Zephir Team <team@zephir-lang.com>
REM
REM For the full copyright and license information, please view the LICENSE
REM file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | @echo off
rem This file is part of the Zephir.
rem
rem (c) Zephir Team <team@zephir-lang.com>
rem
rem For the full copyright and license information, please view the LICENSE
rem file that was distributed with this source code.
cls
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
) else set PHPBIN=php
S... | Correct code style for batch file | Correct code style for batch file
| Batchfile | mit | dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir,dreamsxin/zephir |
bb3bed5515a084cdcf73266b43a81c658bb8a601 | create_IRIDA_Uploader_Installer.bat | create_IRIDA_Uploader_Installer.bat | C:\Python27\Scripts\pip.exe install -r requirements.txt --allow-external pypubsub
C:\Python27\Scripts\pip.exe install -r requirements-building.txt --allow-external pypubsub
cd iridaUploader/docs
C:\Python27\Scripts\sphinx-build -b html -d _build/doctrees . _build/html
echo. 2>_build/__init__.py
echo. 2>_build/html/__... | C:\Python27\Scripts\pip.exe install -r requirements.txt --allow-external pypubsub || exit /b
C:\Python27\Scripts\pip.exe install -r requirements-building.txt --allow-external pypubsub || exit /b
cd iridaUploader/docs || exit /b
C:\Python27\Scripts\sphinx-build -b html -d _build/doctrees . _build/html || exit /b
echo.... | Add a 'set -e'-like fail on command failure for batch script. | Add a 'set -e'-like fail on command failure for batch script.
Former-commit-id: 1bb3de4f7aab27c7069d97f43aa5ea73a901cea9 | Batchfile | apache-2.0 | phac-nml/irida-miseq-uploader,phac-nml/irida-miseq-uploader |
0d3325a6d10947de0b737b654c1768bd33a1c340 | script/add-key.cmd | script/add-key.cmd | openssl aes-256-cbc -k %ENCRYPTION_SECRET% -in .\build\resources\authenticode-signing-cert.p12.enc -out .\build\resources\authenticode-signing-cert.p12 -d -a
certutil -p %KEY_PASSWORD% -importpfx .\build\resources\authenticode-signing-cert.p12
| openssl aes-256-cbc -k %ENCRYPTION_SECRET% -in .\build\resources\authenticode-signing-cert.p12.enc -out .\build\resources\authenticode-signing-cert.p12 -d -a
certutil -p %KEY_PASSWORD% -user -importpfx .\build\resources\authenticode-signing-cert.p12 NoRoot
| Add key to user's store | Add key to user's store
| Batchfile | apache-2.0 | spark/particle-dev |
f733d31ca51717cf66dab27ddb6d2fbe4ee89639 | windows/nsis-installer/oq-server.bat | windows/nsis-installer/oq-server.bat | @echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.commands webui... | @echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.commands webui... | Revert to sleep in oq-webui.bat | Revert to sleep in oq-webui.bat
| Batchfile | agpl-3.0 | gem/oq-installers,gem/oq-installers,gem/oq-nsis |
947fa900b10740f913cba4edbabcc8bf67b6355f | plus-f/release.bat | plus-f/release.bat | call ..\gradlew clean installDist
call "C:\Program Files\Java\jdk11\bin\jlink.exe" --verbose --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules java.base,java.desktop,java.logging,java.management,java.naming,java.sql,java.xml,jdk.unsupported --output build\install\plus-f\runtime
call "C:\Program ... | set JAVA_HOME="C:\Program Files\Java\jdk11"
call ..\gradlew clean installDist
call "C:\Program Files\Java\jdk11\bin\jlink.exe" --verbose --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules java.base,java.desktop,java.logging,java.management,java.naming,java.sql,java.xml,jdk.unsupported --output bu... | Set JAVA_HOME for Windows builds | Set JAVA_HOME for Windows builds
| Batchfile | mit | alangibson27/plus-f,alangibson27/plus-f,alangibson27/plus-f,alangibson27/plus-f |
9f73699ac4b61160c369942d5b99cbb091fceec7 | config/thisroot.bat | config/thisroot.bat | @echo off
rem Source this script to set up the ROOT build that this script is part of.
rem
rem Author: Axel Naumann, 10/07/2007
set OLDPATH=%CD%
set THIS=%0
set THIS=%THIS:~0,-12%.
cd /D %THIS%\..
set ROOTSYS=%CD%
cd /D %OLDPATH%
set PATH=%ROOTSYS%\bin;%PATH%
set OLDPATH=
set THIS=
| @echo off
rem Source this script to set up the ROOT build that this script is part of.
rem
rem Author: Axel Naumann, 10/07/2007
set OLDPATH=%CD%
set THIS=%0
set THIS=%THIS:~0,-12%.
cd /D %THIS%\..
set ROOTSYS=%CD%
cd /D %OLDPATH%
set PATH=%ROOTSYS%\bin;%PATH%
echo %PYTHONPATH%|find /i "%ROOTSYS%\bin">nul || set PYTHON... | Add also %ROOTSYS%\bin to PYTHONPATH if not already set | Add also %ROOTSYS%\bin to PYTHONPATH if not already set
| Batchfile | lgpl-2.1 | tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot,tc3t/qoot |
e41b159a4adb9acce451fc205f4dd6146f755d8f | Source/C/Makefiles/NmakeSubdirs.bat | Source/C/Makefiles/NmakeSubdirs.bat | ## @file
#
# Copyright (c) 2007 - 2010, Intel Corporation
# All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensourc... | @REM ## @file
@REM #
@REM # Copyright (c) 2007 - 2010, Intel Corporation
@REM # All rights reserved. This program and the accompanying materials
@REM # are licensed and made available under the terms and conditions of the BSD License
@REM # which accompanies this distribution. The full text of the license may b... | Add @REM for windows BAT file comment | Add @REM for windows BAT file comment
git-svn-id: f3880c1fc5096ce2109c8aec392d8e07f619f417@1872 c2973edb-eda0-4c78-bc6a-9341b269661f
| Batchfile | bsd-2-clause | tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,tianocore/buildtools-BaseTools,tianocore/buildtools-BaseTools,tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,tianocore/buildtools-BaseTools,bitcrystal/buildtools-BaseTools,bitcrystal/buildtools-BaseTools |
623d4b4a90f8bf57c0242888312a4d9d88086b1e | airesources/C++/run_game.bat | airesources/C++/run_game.bat | SET PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
cl.exe /std:c++14 /O2 /MT /EHsc .\MyBot.cpp /link /out:MyBot.exe
..\..\environment\halite.exe -d "96 96" ".\MyBot.exe" ".\MyBot.exe"
| Add game runner script for Windows to C++ bot | Add game runner script for Windows to C++ bot
| Batchfile | mit | HaliteChallenge/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,lanyudhy/Halite-II,lanyudhy/Halite-II,HaliteChallenge/Halite-II,lanyudhy/Halite-II,lanyudhy/Hal... | |
89b9fb13d0a79109281a2289fa9f256682046469 | binding/create_binding_skeleton.cmd | binding/create_binding_skeleton.cmd | @echo off
SETLOCAL
SET ARGC=0
FOR %%x IN (%*) DO SET /A ARGC+=1
IF %ARGC% NEQ 2 (
echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase
exit /B 1
)
mvn archetype:generate -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -DarchetypeVe... | @echo off
SETLOCAL
SET ARGC=0
FOR %%x IN (%*) DO SET /A ARGC+=1
IF %ARGC% NEQ 2 (
echo Usage: %0 BindingIdInCamelCase BindingIdInLowerCase
exit /B 1
)
mvn archetype:generate -N -DarchetypeGroupId=org.eclipse.smarthome.archetype -DarchetypeArtifactId=org.eclipse.smarthome.archetype.binding -Darchetyp... | Add parameter -N (Do not recurse into sub-projects) to skeleton generation script for Windows. | Add parameter -N (Do not recurse into sub-projects) to skeleton
generation script for Windows.
Signed-off-by: Dancho Penev <37e475d111572792472c8fad744ee4c4e32f000f@hotmail.com> | Batchfile | epl-1.0 | Snickermicker/smarthome,dvanherbergen/smarthome,vilchev/eclipse-smarthome,AchimHentschel/smarthome,kartben/smarthome,BenediktNiehues/smarthome,phxql/smarthome,phxql/smarthome,monnimeter/smarthome,iivalchev/smarthome,SeelabFhdo/smarthome,marinmitev/smarthome,shry15harsh/smarthome,msiegele/smarthome,kdavis-mozilla/smarth... |
668100cd08427c5bc45eebb37e6fefd0f3963f14 | test-recipes/metadata/source_svn/bld.bat | test-recipes/metadata/source_svn/bld.bat | if not exist trunk exit 1
cd trunk
svn info
if errorlevel 1 exit 1
for /f "delims=" %%i in ('svn info | grep "Revision"') do set svnrev=%%i
if not svnrev=="Revision: 1157" exit 1
| if not exist trunk exit 1
cd trunk
svn info
if errorlevel 1 exit 1
for /f "delims=" %%i in ('svn info ^| grep "Revision"') do set svnrev=%%i
if errorlevel 1 exit 1
echo %svnrev%
if not "%svnrev%"=="Revision: 1157" exit 1
| Fix source_svn test recipe on Windows | Fix source_svn test recipe on Windows
| Batchfile | bsd-3-clause | shastings517/conda-build,frol/conda-build,ilastik/conda-build,dan-blanchard/conda-build,frol/conda-build,ilastik/conda-build,sandhujasmine/conda-build,mwcraig/conda-build,mwcraig/conda-build,rmcgibbo/conda-build,takluyver/conda-build,frol/conda-build,sandhujasmine/conda-build,rmcgibbo/conda-build,takluyver/conda-build,... |
4e2dba26d2a8ac260c52c81c63a887569b5d92fc | dev/zip/scalive.bat | dev/zip/scalive.bat | @set JAVA_OPTS=-Djava.awt.headless=true
@set ROOT_DIR=%~dp0
@cd "%ROOT_DIR%"
@set CLASS_PATH="%ROOT_DIR%\*;."
@java %JAVA_OPTS% -cp %CLASS_PATH% scalive.AgentLoader %ROOT_DIR% %*
| @echo off
set JAVA_OPTS=-Djava.awt.headless=true
set ROOT_DIR=%~dp0
cd "%ROOT_DIR%"
set CLASS_PATH="%ROOT_DIR%\*;."
java %JAVA_OPTS% -cp %CLASS_PATH% scalive.AgentLoader %ROOT_DIR% %*
| Use "@echo off" for brevity | Use "@echo off" for brevity
| Batchfile | mit | xitrum-framework/scalive,xitrum-framework/scalive |
f568b9beb21f7a6c7e3602fb2f0f6c6a59b4ef93 | recipes/ansible-core/bld.bat | recipes/ansible-core/bld.bat | mklink ./lib/ansible/release.py ./lib/ansible/ansible_release.py
%PYTHON% -m pip install . -vv
| mklink build/lib/ansible/ansible_release.py build/lib/ansible/release.py
%PYTHON% -m pip install . -vv
| Fix order of arguments in mklink and prefix path with build/ | Fix order of arguments in mklink and prefix path with build/
| Batchfile | bsd-3-clause | johanneskoester/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,ReimarB... |
33d0a92d4b34b423246c88b8ca4b3ebfd121b0a3 | build.bat | build.bat | @echo off
echo building prefuse...
if "%JAVA_HOME%" == "" goto error
set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\lib\ant.jar;%CLASSPATH%
set ANT_HOME=./lib
echo ... using classpath %LOCALCLASSPATH%
%JAVA_HOME%\bin\java.exe -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main ... | @echo off
echo building prefuse...
if "%JAVA_HOME%" == "" goto error
set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\lib\ant.jar;%CLASSPATH%
set ANT_HOME=./lib
echo ... using classpath %LOCALCLASSPATH%
"%JAVA_HOME%\bin\java.exe" -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Mai... | Allow spaces in JAVA_HOME directory | Allow spaces in JAVA_HOME directory
| Batchfile | bsd-3-clause | javaprogbinf2015/Lab8,giacomovagni/Prefuse,Vitor95/epocaRecurso,Vitor95/epocaRecurso,javaprogbinf2015/Lab8,effrafax/Prefux,javaprogbinf2015/Lab8,jchildress/Prefux,effrafax/Prefux,Vitor95/epocaRecurso,giacomovagni/Prefuse,jchildress/Prefux,giacomovagni/Prefuse |
b6c77e0210fa747b8fcbb7fc8762d6a4ab85b4b7 | config/pidkill.bat | config/pidkill.bat | echo off
REM leave a pid file so that a non-DC process
REM like configd can be notified for shutdown
copy /y nul > %cd%\.pid%1
REM set this sleep value to be at least twice
REM as long as the QMF_CONFIGD_WIN_INTERVAL
set cntr=0
:LoopStart
IF NOT EXIST %cd%\.pid%1 Goto EndClean
ping 127.0.0.1 -n 1 -w 1000 > nul
IF %... | echo off
REM leave a pid file so that a non-DC process
REM like configd can be notified for shutdown
copy /y nul > %cd%\.pid%1
REM set this sleep value to be at least twice
REM as long as the QMF_CONFIGD_WIN_INTERVAL
set cntr=0
:LoopStart
IF NOT EXIST %cd%\.pid%1 Goto EndClean
ping 1.1.1.1 -n 1 -w 1000 > nul
IF %cn... | Update for ping wait to use invalid address so timeouts are reached. | Update for ping wait to use invalid address so timeouts are reached.
| Batchfile | apache-2.0 | htcondor/configuration_tools,htcondor/configuration_tools,htcondor/configuration_tools |
0da8d6f6d7ee851e8ae6d3b4a0711381d3bbe844 | run.cmd | run.cmd | @if "%_echo%" neq "on" echo off
setlocal
if defined VisualStudioVersion goto :Run
set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
if exist %_VSWHERE% (
for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
)
if not ... | @if "%_echo%" neq "on" echo off
setlocal
if defined VisualStudioVersion goto :Run
set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
if exist %_VSWHERE% (
for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
)
if not ... | Change to current directory after calling VSDevCmd.bat | Change to current directory after calling VSDevCmd.bat
VSDevCmd.bat switches to a user directory so we need to ensure
we are switched back to the root of the repo in order for the
commands that take relative paths to projects to work. This will
allow you to build the repo from a clean cmd prompt again (still
requires ... | Batchfile | mit | rakeshsinghranchi/core-setup,rakeshsinghranchi/core-setup,zamont/core-setup,crummel/dotnet_core-setup,MichaelSimons/core-setup,weshaggard/core-setup,wtgodbe/core-setup,chcosta/core-setup,zamont/core-setup,wtgodbe/core-setup,zamont/core-setup,ericstj/core-setup,chcosta/core-setup,ericstj/core-setup,weshaggard/core-setup... |
615f5b81819a84c03fb3a5f1c1be22941aaed7cf | build_windows_samples_sdk.bat | build_windows_samples_sdk.bat | cd %VULKAN_SDK%
cd glslang
md build
cd build
cmake -G "Visual Studio 12 Win64" ..
msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet
cd ..\..
cd spirv-tools
md build
cd build
cmake -G "Visual Studio 12 Win64" ..
msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /... | Add batch script to build the samples in the Windows SDK | Add batch script to build the samples in the Windows SDK
Change-Id: I3da14e459ac1928b705d1b0be5dfa895b33fc54f
| Batchfile | apache-2.0 | Radamanthe/VulkanSamples,Radamanthe/VulkanSamples,Radamanthe/VulkanSamples,Radamanthe/VulkanSamples,Radamanthe/VulkanSamples,Radamanthe/VulkanSamples | |
97eddbab17767d1c22c30ca29fa1424d6266034d | bootstrap.cmd | bootstrap.cmd | @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
NuGet.exe install ILRepack.MSBuild.Task -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
| @echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.0 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonI... | Use ILRepack.MSBuild.Task from sympa public myget feed | Use ILRepack.MSBuild.Task from sympa public myget feed
| Batchfile | bsd-2-clause | loresoft/msbuildtasks |
9a1b5e500ace17b52d8f4ae9a08442f0930a2ad9 | init.bat | init.bat | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul$G$G$*
doskey pwd=echo %CD%
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
... | @echo off
chcp 65001>nul
prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s
rem Fake a UNIX environment
doskey clear=cls
doskey ls=dir /d $*
doskey cp=copy $*
doskey mv=move $*
doskey rm=del $*
doskey cat=type $*
doskey touch=type nul$G$G$*
doskey pwd=echo %CD%
rem Easier navigation
doskey cd=cd /D $*
doskey cd..=cd ..
... | Make sure we can exit cmd when we start code | Make sure we can exit cmd when we start code
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
647b53369d610f3ba7ce275596b91c2aab5471f8 | v2/bin/sdownload.cmd | v2/bin/sdownload.cmd | @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
| @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\jsr173_api.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\resolver.jar
java -classpath %cp% o... | Fix for sDownload tool. Added correct v2 classpath entries. Submitted by: Jacob Danner | Fix for sDownload tool. Added correct v2 classpath entries.
Submitted by: Jacob Danner
git-svn-id: 297cb4147f50b389680bb5ad136787e97b9148ae@111095 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | apache/xmlbeans,apache/xmlbeans,apache/xmlbeans |
f280264a6237ea31b27c559a9af4c9d7124a3eb7 | buildTemplatesNuget.cmd | buildTemplatesNuget.cmd | SET PACKAGE_VERSION=3.0.1
cd .\src\Templates
nuget pack -Version %PACKAGE_VERSION%
dotnet new -u GeneticSharp.Templates
dotnet new -i GeneticSharp.Templates.%PACKAGE_VERSION%.nupkg
echo GeneticSharpTspBlazorApp
dotnet new GeneticSharpTspBlazorApp -n TspBlazorApp -o TspBlazorApp
echo GeneticSharpConsoleApp
dotnet ne... | SET PACKAGE_VERSION=3.0.0
cd .\src\Templates
nuget pack -Version %PACKAGE_VERSION%
dotnet new -u GeneticSharp.Templates
dotnet new -i GeneticSharp.Templates.%PACKAGE_VERSION%.nupkg
echo GeneticSharpTspBlazorApp
dotnet new GeneticSharpTspBlazorApp -n TspBlazorApp -o TspBlazorApp
echo GeneticSharpConsoleApp
dotnet ne... | Fix the nuget templates version | Fix the nuget templates version
| Batchfile | mit | giacomelli/GeneticSharp,giacomelli/GeneticSharp,giacomelli/GeneticSharp,giacomelli/GeneticSharp |
809da20100bbea63ce7f1582166287c9017c0c43 | test/windows.cgi.cmd | test/windows.cgi.cmd | @echo off
echo HTTP/1.1 200 OK
echo Connection: close
echo.
echo CGI test:
echo.
set
| @echo off
echo HTTP/1.1 200 OK
echo Connection: close
echo.
echo CGI test:
echo.
set
| Fix up batch script line endings | Fix up batch script line endings
The new .gitattributes solve issues with Windows specific files
| Batchfile | mit | GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver,GerHobbelt/civet-webserver |
345f5b38f78d9c539b4dd300a6523846564df0dc | gen-wiki.cmd | gen-wiki.cmd | @ECHO OFF
PUSHD "%~dp0."
PUSHD wiki
npm install
node airbit.wiki.js
POPD
IF EXIST public\wiki RD /Q public\wiki
MKLINK /J public\wiki wiki\_site
POPD | Add utility script to quick re-generate the wiki pages | Add utility script to quick re-generate the wiki pages
| Batchfile | mit | fjukstad/luft,fjukstad/luft,fjukstad/luft | |
5031ece55a83455acbe7a76ab3b44204d8de60ad | win-release-build.bat | win-release-build.bat | md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CONFIGURATION_TYPES=Release -G "Visual Studio 14 2015" ..
devenv musicgame.sln /build
pause | md build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CONFIGURATION_TYPES=Release -G "Visual Studio 14 2015" ..
devenv musicgame.sln /build
cd ..
pause
| Fix slight issue with the windows build script not returning to the original folder it was invoked from. | Fix slight issue with the windows build script not returning to the original folder it was invoked from.
| Batchfile | unknown | OpenRhythm/OpenRhythm,mdsitton/musicgame,OpenRhythm/OpenRhythm,mdsitton/musicgame,OpenRhythm/OpenRhythm |
819e8b30b807aee7a7d0f504ea66a8c905042284 | devtools/cibuild.cmd | devtools/cibuild.cmd | cd /d "%~dp0"
cd ..
rmdir /s /q install
rmdir /s /q build
mkdir build
cd build
cmake .. -G "Visual Studio 12" "-DCMAKE_INSTALL_PREFIX=%WORKSPACE%\install" %*
cmake --build . --config Debug
cmake --build . --config RelWithDebInfo
cmake --build . --config RelWithDebInfo -- /p:RunCodeAnalysis=True
cmake --build . --config... | cd /d "%~dp0"
cd ..
rmdir /s /q install
rmdir /s /q build
mkdir build
cd build
cmake .. -G "Visual Studio 12" "-DCMAKE_INSTALL_PREFIX=%WORKSPACE%\install" %*
cmake --build . --config Debug
cmake --build . --config RelWithDebInfo
cmake --build . --config RelWithDebInfo --target INSTALL
cmake --build . --config RelWithD... | Change build order for CI. | Change build order for CI.
| Batchfile | apache-2.0 | d235j/OSVR-Core,godbyk/OSVR-Core,OSVR/OSVR-Core,Armada651/OSVR-Core,OSVR/OSVR-Core,godbyk/OSVR-Core,godbyk/OSVR-Core,leemichaelRazer/OSVR-Core,d235j/OSVR-Core,feilen/OSVR-Core,leemichaelRazer/OSVR-Core,d235j/OSVR-Core,OSVR/OSVR-Core,leemichaelRazer/OSVR-Core,OSVR/OSVR-Core,d235j/OSVR-Core,leemichaelRazer/OSVR-Core,godb... |
4faebf5bc53af61f1588f33eaae06cb97b39c89f | tgui/install_dependencies.bat | tgui/install_dependencies.bat | @echo off
echo node.js > 5.3.0 must be installed for this script to work.
echo If this script fails, try closing editors and running it again first.
echo Any warnings about optional dependencies can be safely ignored.
pause
REM Install Gulp
cmd /c npm install gulp-cli -g
REM Install tgui dependencies
cmd /c npm install... | @echo off
echo node.js 5.3.0 or newer must be installed for this script to work.
echo If this script fails, try closing editors and running it again first.
echo Any warnings about optional dependencies can be safely ignored.
pause
REM Install Gulp
cmd /c npm install gulp-cli -g
REM Install tgui dependencies
cmd /c npm ... | Fix message in install script | Fix message in install script
| Batchfile | agpl-3.0 | dannyy3566/FTL13,riftstation/riftstation,NicholasM10/-tg-station,lordpidey/-tg-station,coiax/-tg-station,neersighted/tgstation,CrAzYPiLoT-SS13/FTL13-1,ShizCalev/tgstation,JJRcop/tgstation,Fox-McCloud/-tg-station,TheVekter/-tg-station,Memendia/HippieStation,Kirill1243/-tg-station,vcordie/tgstation,Tacolizard/tgstation,M... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.