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
|
---|---|---|---|---|---|---|---|---|---|
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
if %errorlevel% neq 0 exit /b %errorlevel%
)
)
|
@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 from: %%~dpnxa"
%vstest% %%~dpnxa /inIsolation /platform:%platform% /TestAdapterPath:%%~dpa /logger:AppVeyor
if %errorlevel% neq 0 exit /b %errorlevel%
)
)
|
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 published by
@rem the Free Software Foundation, either version 3 of the License, or
@rem (at your option) any later version.
@rem
@rem STEP is distributed in the hope that it will be useful,
@rem but WITHOUT ANY WARRANTY; without even the implied warranty of
@rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@rem GNU Affero General Public License for more details.
@rem
@rem You should have received a copy of the GNU Affero General Public License
@rem along with STEP. If not, see <http://www.gnu.org/licenses/>.
@rem ***************************************************************************
rem @echo off
TITLE STEP MongoDB
SET MONGO_PATH=
rem if mongod.exe isn't on your path, then set your own as follows (watch for the backslash and double quote at the end):
rem SET MONGO_PATH="D:\Program Files\MongoDB\Server\3.0\bin"\
for /f "skip=1" %%x in ('wmic os get localdatetime') do if not defined mydate set mydate=%%x
%MONGO_PATH%mongod.exe -dbpath ..\data\mongodb > mongod_%mydate%.log 2>&1
|
@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 published by
@rem the Free Software Foundation, either version 3 of the License, or
@rem (at your option) any later version.
@rem
@rem STEP is distributed in the hope that it will be useful,
@rem but WITHOUT ANY WARRANTY; without even the implied warranty of
@rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@rem GNU Affero General Public License for more details.
@rem
@rem You should have received a copy of the GNU Affero General Public License
@rem along with STEP. If not, see <http://www.gnu.org/licenses/>.
@rem ***************************************************************************
rem @echo off
TITLE STEP MongoDB
SET MONGO_PATH=
rem if mongod.exe isn't on your path, then set your own as follows (watch for the backslash and double quote at the end):
rem SET MONGO_PATH="D:\Program Files\MongoDB\Server\3.0\bin"\
for /f "skip=1" %%x in ('wmic os get localdatetime') do if not defined mydate set mydate=%%x
%MONGO_PATH%mongod.exe -dbpath ..\data\mongodb > ..\log\mongod_%mydate%.log 2>&1
|
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.cfg
|
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 vimgrep.suite
goto End
:End
|
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 -noprofile "(Get-Command .\bin\release\Microsoft.Bot.Builder.dll).FileVersionInfo.FileVersion"') do set builder=%%v
for /f %%v in ('powershell -noprofile "(Get-Command .\bin\release\Microsoft.Bot.Builder.History.dll).FileVersionInfo.FileVersion"') do set version=%%v
..\..\packages\NuGet.CommandLine.3.4.3\tools\NuGet.exe pack Microsoft.Bot.Builder.History.nuspec -symbols -properties version=%version%;builder=%builder% -OutputDirectory ..\nuget
echo *** Finished building Microsoft.Bot.Builder.History
|
@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 -noprofile "(Get-Command .\bin\release\Microsoft.Bot.Builder.dll).FileVersionInfo.FileVersion"') do set builder=%%v
for /f %%v in ('powershell -noprofile "(Get-Command .\bin\release\Microsoft.Bot.Builder.History.dll).FileVersionInfo.FileVersion"') do set version=%%v
..\..\packages\NuGet.CommandLine.4.1.0\tools\NuGet.exe pack Microsoft.Bot.Builder.History.nuspec -symbols -properties version=%version%;builder=%builder% -OutputDirectory ..\nuget
echo *** Finished building Microsoft.Bot.Builder.History
|
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 _EXECJAVA="%JAVA_HOME%"/bin/java
)
start /MIN "%COLLECOTR_PROCESS_TITLE%" %_EXECJAVA% "%COLLECTOR_RUNTIME_OPTIONS%" -cp "%CLASSPATH%" org.skywalking.apm.collector.worker.CollectorBootStartUp &
echo Collector started successfully!
endlocal
|
@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
)
if not defined JAVA_HOME (
echo "JAVA_HOME not set."
set _EXECJAVA=java
)
start /MIN "%COLLECOTR_PROCESS_TITLE%" %_EXECJAVA% "%COLLECTOR_RUNTIME_OPTIONS%" -cp "%CLASSPATH%" org.skywalking.apm.collector.worker.CollectorBootStartUp &
echo Collector started successfully!
endlocal
|
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,apache/skywalking,apache/skywalking
|
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 "%HOME%\.vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\_vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\.vimrc.bundles" "%BASE_DIR%\.vimrc.bundles"
call git clone http://github.com/gmarik/vundle.git "%HOME%/.vim/bundle/vundle"
call vim -u "%BASE_DIR%/.vimrc.bundles" +BundleInstall! +BundleClean +qall
|
@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
chdir /d "%BASE_DIR%"
call git pull
chdir /d "%ORIGINAL_DIR%"
call cd "%BASE_DIR%"
)
call mklink "%HOME%\.vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\_vimrc" "%BASE_DIR%\.vimrc"
call mklink "%HOME%\.vimrc.fork" "%BASE_DIR%\.vimrc.fork"
call mklink "%HOME%\.vimrc.bundles" "%BASE_DIR%\.vimrc.bundles"
call mklink "%HOME%\.vimrc.bundles.fork" "%BASE_DIR%\.vimrc.bundles.fork"
call mklink /J "%HOME%\.vim" "%BASE_DIR%\.vim"
IF NOT EXIST "%BASE_DIR%\.vim\bundle" (
call mkdir "%BASE_DIR%\.vim\bundle"
)
IF NOT EXIST "%HOME%/.vim/bundle/vundle" (
call git clone https://github.com/gmarik/vundle.git "%HOME%/.vim/bundle/vundle"
)
call vim -u "%BASE_DIR%/.vimrc.bundles" +BundleInstall! +BundleClean +qall
|
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-vim,frtmelody/spf13-vim,pebcac/spf13-vim,Acanthostega/spf13-vim,iBreaker/vimrc,AaronYee/spf13-vim,chenyaqiuqiu/spf13-vim,zacchen/spf13-vim,theand/spf13-vim,dawnsong/spf13-vim,AkemiHomura/VimConf,brg-liuwei/spf13-vim,wenzhucjy/spf13-vim,caibo2014/spf13-vim,jimgle/spf13-vim,nacerix/vim-install,alex-zhang/spf13-vim,heartsentwined/spf13-vim,konqui/spf13-vim,yangao118/spf13-vim,14roiron/spf13-vim,libichong/spf13-vim,phlizik/spf13-vim,Ph0enixxx/spf13-vim,perfectworks/pw-vim,wmudge/spf13-vim,qingzew/spf13-vim,yougth/spf13-vim,russellb/spf13-vim,tttlkkkl/spf13-vim,rewiko/conf-vim,lk1ngaa7/spf13-vim,nevernet/spf13-vim,metcalfc/spf13-vim,Chuenfai/spf13-vim,dawnsong/spf13-vim,NoviaDroid/spf13-vim,nxsy/spf13-vim,myszek123/spf13-vim,dawnsong/spf13-vim,pjvds/spf13-vim,cgideon/spf13-vim,sunshinemyson/spf13-vim,dawnsong/spf13-vim,Mucid/spf13-vim,spf13/spf13-vim,myself659/spf13-vim,dawnsong/spf13-vim,toejough/spf13-vim,Alexoner/spf13-vim,samwangzhibo/spf13-vim,pietrushnic/spf13-vim,cklsoft/spf13-vim,taohs/spf13-vim,zachywang/spf13-vim,mirans-tec/spf13-vim,cyberyoung/spf13-vim,Anden/spf13-vim,Frank1993/spf13-vim,taogogo/spf13-vim,jf87/spf13-vim,mikezuff/spf13-vim,y8y/my-spf13-vim,veelion/spf13-vim,0xItx/spf13-vim,liuyun1217/spf13-vim,Xiaolang0/spf13-vim,AkemiHomura/VimConf,kumasento/spf13-vim,dawnsong/spf13-vim,yograf/spf13-vim,osxi/spf13-vim,shaunstanislaus/spf13-vim,Eastegg/My-spf13,hahaliu005/spf13-vim,taohaoge/spf13-vim,Eastegg/My-spf13,dawnsong/spf13-vim,mightyguava/spf13-vim,pavgup/spf13-vim,dawnsong/spf13-vim,dawnsong/spf13-vim,all3n/spf13-vim,teasp00n/spf13-vim,francoisjacques/spf13-vim,chenpiao/spf13-vim,chrxn/spf13-vim,paddy-w/spf13-vim,mmikitka/spf13-vim,ArkBriar/VimConf,chenzhongjie/.spf13-vim,u9520107/spf13-vim,ProteusCortex/spf13-vim,xuzhenglun/spf13-vim,zhangtuoparis13/spf13-vim,sit-in/spf13-vim,RiceParty/spf13-vim,dengyh/spf13-vim,botord/spf13-vim,qingzew/spf13-vim,r3jack/spf13-vim,qiufozhe/spf13-vim,Eastegg/My-spf13,Denniskevin/spf13-vim,kevinushey/spf13-vim,IdVincentYang/spf13-vim,ZiboWang/spf13-vim,farrrr/far-vim,qingzew/spf13-vim,leitu/spf13-vim,amorwilliams/spf13-vim,zhlinh/spf13-vim,dawnsong/spf13-vim,ArkBriar/VimConf,lanffy/spf13-vim,bucketzxm/spf13-vim,chenshuiyin/spf13-vim,dawnsong/spf13-vim,anto-daniel/spf13-vim,JanChw/spf13-vim,Alkaid-seven/spf13-vim,dawnsong/spf13-vim,wangbiaobiao/spf13-vim,lzhenyu0/spf13-vim,demon386/spf13-vim,lisijie/spf13-vim,raincoatrun/spf13-vim,bronzehedwick/spf13-vim,sreadfox/spf13-vim,dawnsong/spf13-vim,haoli001/spf13-vim,codedogfish/spf13-vim,ucfree/spf13-vim
|
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 .\staging
copy .\release\presi-aoke.exe .\staging
echo Copying qt libraries to staging
.\windeployqt\release\windeployqt.exe .\staging\presi-aoke.exe -no-translations -no-webkit2 -opengl
echo Creating installer
if exist "C:\Program Files (x86)\NSIS\makensis.exe" (set nsis="C:\Program Files (x86)\NSIS\makensis.exe") else (set nsis="C:\Program Files\NSIS\makensis.exe")
%nsis% presi-aoke.nsi
IF ERRORLEVEL ==1 GOTO :ERROR
echo Build complete
EXIT /B 0
:ERROR
ECHO Build failed.
EXIT /B 1
|
@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 .\staging
copy .\release\presi-aoke.exe .\staging
echo Copying qt libraries to staging
.\windeployqt\release\windeployqt.exe .\staging\presi-aoke.exe -no-translations -no-webkit -no-webkit2 -no-opengl -no-svg
rem Trim a bunch of plugins that we don't use
del /Q /S .\staging\iconengines
erase .\staging\imageformats\qdds*.dll .\staging\imageformats\qicns*.dll .\staging\imageformats\qico*.dll .\staging\imageformats\qjp2*.dll .\staging\imageformats\qmng*.dll .\staging\imageformats\qsvg*.dll .\staging\imageformats\qtga*.dll .\staging\imageformats\qtiff*.dll .\staging\imageformats\qweb*.dll
erase .\staging\imageformats\qgifd.dll .\staging\imageformats\qjpegd.dll .\staging\imageformats\qwbmpd.dll
echo Creating installer
if exist "C:\Program Files (x86)\NSIS\makensis.exe" (set nsis="C:\Program Files (x86)\NSIS\makensis.exe") else (set nsis="C:\Program Files\NSIS\makensis.exe")
%nsis% presi-aoke.nsi
IF ERRORLEVEL ==1 GOTO :ERROR
echo Build complete
EXIT /B 0
:ERROR
ECHO Build failed.
EXIT /B 1
|
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" ..
ICProjConvert150 embree.sln /IC /s /f
cmake --build . --config Release --target INSTALL -- /m
cmake --build . --config Release --target PACKAGE -- /m
copy embree*.exe %destroot%
cd ..
mkdir build32
cd build32
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\win32 -D COMPILER=ICC -G "Visual Studio 12 2013" ..
ICProjConvert150 embree.sln /IC /s /f
cmake --build . --config Release --target INSTALL -- /m
cmake --build . --config Release --target PACKAGE -- /m
copy embree*.exe %destroot%
cd ..
endlocal
:end
|
@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" ..
ICProjConvert150 embree.sln /IC /s /f
if %ERRORLEVEL%==9009 (
echo Problems converting the project to ICC, aborting
goto abort
)
cmake --build . --config Release --target INSTALL -- /m
cmake --build . --config Release --target PACKAGE -- /m
copy embree*.exe %destroot%
cd ..
mkdir build32
cd build32
del CMakeCache.txt rem make sure to use default settings
cmake -D CMAKE_INSTALL_PREFIX=%destroot%\win32 -D COMPILER=ICC -G "Visual Studio 12 2013" ..
ICProjConvert150 embree.sln /IC /s /f
if %ERRORLEVEL%==9009 (
echo Problems converting the project to ICC, aborting
goto abort
)
cmake --build . --config Release --target INSTALL -- /m
cmake --build . --config Release --target PACKAGE -- /m
copy embree*.exe %destroot%
cd ..
:abort
endlocal
:end
|
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 %* d:\Artiom\Projects\SharpDX\SharpDX.build
|
@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 %* SharpDX.build
|
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-USA/SharpDX,weltkante/SharpDX,davidlee80/SharpDX-1,mrvux/SharpDX,VirusFree/SharpDX,jwollen/SharpDX,davidlee80/SharpDX-1,davidlee80/SharpDX-1,waltdestler/SharpDX,TechPriest/SharpDX,dazerdude/SharpDX,Ixonos-USA/SharpDX,manu-silicon/SharpDX,RobyDX/SharpDX,PavelBrokhman/SharpDX,PavelBrokhman/SharpDX,TigerKO/SharpDX,TigerKO/SharpDX,Ixonos-USA/SharpDX,sharpdx/SharpDX,waltdestler/SharpDX,davidlee80/SharpDX-1,mrvux/SharpDX,weltkante/SharpDX,TigerKO/SharpDX,fmarrabal/SharpDX,TigerKO/SharpDX,waltdestler/SharpDX,RobyDX/SharpDX,dazerdude/SharpDX,fmarrabal/SharpDX,andrewst/SharpDX,TechPriest/SharpDX,weltkante/SharpDX,mrvux/SharpDX,weltkante/SharpDX,TechPriest/SharpDX,manu-silicon/SharpDX,Ixonos-USA/SharpDX,sharpdx/SharpDX,sharpdx/SharpDX,jwollen/SharpDX,jwollen/SharpDX,dazerdude/SharpDX
|
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 vimgrep.suite
goto End
:End
|
@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 %4 %5 %6 %7 %8 %9
../../runVimTests/bin/runVimTests.cmd --pure %1 %2 %3 %4 %5 %6 %7 %8 %9
goto End
:RunAll
echo Running all
../../runVimTests/bin/runVimTests.cmd --pure vimgrep.suite
goto End
:End
|
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\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Drive\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Folder\shellex\ContextMenuHandlers\%key%" /d "---" /f
|
@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\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Drive\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\Folder\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\InternetShortcut\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\LibraryFolder\background\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\LibraryLocation\shellex\ContextMenuHandlers\%key%" /d "---" /f
reg add "%registryRoot%\lnkfile\shellex\ContextMenuHandlers\%key%" /d "---" /f
|
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.mak
cd ..
call upxsc1
call zipwscite
call delbin
cd ..
cd scintilla
call delbin
cd ..
|
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 win32
nmake -f scite.mak
cd ..
call upxsc1
call zipwscite
call delbin
cd ..
cd scintilla
call delbin
cd ..
|
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\VsDevCmd.bat"
python projectfiles_unchanged.py
if %ERRORLEVEL% NEQ 0 (
RMDIR /S /Q "%BUILD_DIR%"
)
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COMMAND% -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles" "%SOURCE_DIR%" || goto error
%MAKE_COMMAND% || goto error
cd "%SOURCE_DIR%"
goto :EOF
:error
cd "%SOURCE_DIR%"
exit /b 1
|
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 Studio 12.0\Common7\Tools\VsDevCmd.bat"
python projectfiles_unchanged.py
if %ERRORLEVEL% NEQ 0 (
RMDIR /S /Q "%BUILD_DIR%"
)
if not exist "%BUILD_DIR%" mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%" || goto error
%CMAKE_COMMAND% -DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE% -G "NMake Makefiles" "%SOURCE_DIR%" || goto error
%MAKE_COMMAND% || goto error
cd "%SOURCE_DIR%"
goto :EOF
:error
cd "%SOURCE_DIR%"
exit /b 1
|
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%"
exit /b 0
:error
cd "%SOURCE_DIR%"
exit /b 1
|
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_COMMAND% -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles" "%SOURCE_DIR%" || goto error
%MAKE_COMMAND% || goto error
cd "%SOURCE_DIR%"
exit /b 0
:error
cd "%SOURCE_DIR%"
exit /b 1
|
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_SUB_DIR%
mingw32-make PREFIX="%INSTALL_DIR%\install" BINARY=%CK_TARGET_CPU_BITS% ONLY_CBLAS=1 MAKE=mingw32-make.exe CFLAGS="-DMS_ABI" NOFORTRAN=1 NO_LAPACK=1
if %errorlevel% neq 0 (
echo.
echo Error: make failed!
goto err
)
mingw32-make install PREFIX="%INSTALL_DIR%\install"
if %errorlevel% neq 0 (
echo.
echo Error: make install failed!
goto err
)
exit /b 0
|
@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_SUB_DIR%
rem mingw32-make PREFIX="%INSTALL_DIR%\install" BINARY=%CK_TARGET_CPU_BITS% ONLY_CBLAS=1 MAKE=mingw32-make.exe CFLAGS="-DMS_ABI" NOFORTRAN=1 NO_LAPACK=1
make PREFIX="%INSTALL_DIR%\install" BINARY=%CK_TARGET_CPU_BITS% CC=gcc FC=gfortran
if %errorlevel% neq 0 (
echo.
echo Error: make failed!
goto err
)
mingw32-make install PREFIX="%INSTALL_DIR%\install"
if %errorlevel% neq 0 (
echo.
echo Error: make install failed!
goto err
)
exit /b 0
|
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 naclsdkm-pnacl-linux -b naclsdkm-pnacl-mac -b naclsdkm-windows32 ^
-b naclsdkm-windows64 -S svn://svn.chromium.org/chrome-try/try-nacl
|
@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 naclsdkm-windows32 -b naclsdkm-windows64 ^
-S svn://svn.chromium.org/chrome-try/try-nacl
|
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-chromium,dednal/chromium.src,zcbenz/cefode-chromium,Pluto-tv/chromium-crosswalk,nacl-webkit/chrome_deps,littlstar/chromium.src,patrickm/chromium.src,ondra-novak/chromium.src,timopulkkinen/BubbleFish,dednal/chromium.src,krieger-od/nwjs_chromium.src,Just-D/chromium-1,PeterWangIntel/chromium-crosswalk,M4sse/chromium.src,pozdnyakov/chromium-crosswalk,anirudhSK/chromium,Jonekee/chromium.src,crosswalk-project/chromium-crosswalk-efl,bright-sparks/chromium-spacewalk,anirudhSK/chromium,chuan9/chromium-crosswalk,patrickm/chromium.src,dednal/chromium.src,Jonekee/chromium.src,anirudhSK/chromium,littlstar/chromium.src,junmin-zhu/chromium-rivertrail,chuan9/chromium-crosswalk,hgl888/chromium-crosswalk-efl,M4sse/chromium.src,markYoungH/chromium.src,bright-sparks/chromium-spacewalk,M4sse/chromium.src,ltilve/chromium,zcbenz/cefode-chromium,hgl888/chromium-crosswalk,mogoweb/chromium-crosswalk,Chilledheart/chromium,mohamed--abdel-maksoud/chromium.src,Fireblend/chromium-crosswalk,Fireblend/chromium-crosswalk,Fireblend/chromium-crosswalk,ondra-novak/chromium.src,bright-sparks/chromium-spacewalk,M4sse/chromium.src,bright-sparks/chromium-spacewalk,littlstar/chromium.src,hgl888/chromium-crosswalk,Just-D/chromium-1,krieger-od/nwjs_chromium.src,nacl-webkit/chrome_deps,fujunwei/chromium-crosswalk,pozdnyakov/chromium-crosswalk,Jonekee/chromium.src,Pluto-tv/chromium-crosswalk,timopulkkinen/BubbleFish,hgl888/chromium-crosswalk-efl,hgl888/chromium-crosswalk-efl,anirudhSK/chromium,jaruba/chromium.src,dushu1203/chromium.src,axinging/chromium-crosswalk,anirudhSK/chromium,markYoungH/chromium.src,Jonekee/chromium.src,Fireblend/chromium-crosswalk,markYoungH/chromium.src,axinging/chromium-crosswalk,jaruba/chromium.src,pozdnyakov/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,dednal/chromium.src,jaruba/chromium.src,mogoweb/chromium-crosswalk,markYoungH/chromium.src,Pluto-tv/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,ChromiumWebApps/chromium,patrickm/chromium.src,anirudhSK/chromium,markYoungH/chromium.src,PeterWangIntel/chromium-crosswalk,chuan9/chromium-crosswalk,fujunwei/chromium-crosswalk,ondra-novak/chromium.src,dushu1203/chromium.src,ChromiumWebApps/chromium,patrickm/chromium.src,hgl888/chromium-crosswalk,littlstar/chromium.src,krieger-od/nwjs_chromium.src,junmin-zhu/chromium-rivertrail,littlstar/chromium.src,dushu1203/chromium.src,ondra-novak/chromium.src,nacl-webkit/chrome_deps,hgl888/chromium-crosswalk,Fireblend/chromium-crosswalk,hgl888/chromium-crosswalk,hgl888/chromium-crosswalk,krieger-od/nwjs_chromium.src,M4sse/chromium.src,fujunwei/chromium-crosswalk,mogoweb/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,mogoweb/chromium-crosswalk,pozdnyakov/chromium-crosswalk,Chilledheart/chromium,ChromiumWebApps/chromium,ondra-novak/chromium.src,Pluto-tv/chromium-crosswalk,chuan9/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,krieger-od/nwjs_chromium.src,jaruba/chromium.src,ChromiumWebApps/chromium,ltilve/chromium,ChromiumWebApps/chromium,TheTypoMaster/chromium-crosswalk,patrickm/chromium.src,Jonekee/chromium.src,mohamed--abdel-maksoud/chromium.src,nacl-webkit/chrome_deps,hujiajie/pa-chromium,crosswalk-project/chromium-crosswalk-efl,Chilledheart/chromium,Pluto-tv/chromium-crosswalk,junmin-zhu/chromium-rivertrail,Just-D/chromium-1,dednal/chromium.src,ltilve/chromium,timopulkkinen/BubbleFish,nacl-webkit/chrome_deps,ChromiumWebApps/chromium,dednal/chromium.src,jaruba/chromium.src,ChromiumWebApps/chromium,mohamed--abdel-maksoud/chromium.src,timopulkkinen/BubbleFish,zcbenz/cefode-chromium,Jonekee/chromium.src,patrickm/chromium.src,pozdnyakov/chromium-crosswalk,timopulkkinen/BubbleFish,mohamed--abdel-maksoud/chromium.src,TheTypoMaster/chromium-crosswalk,M4sse/chromium.src,patrickm/chromium.src,TheTypoMaster/chromium-crosswalk,hujiajie/pa-chromium,zcbenz/cefode-chromium,M4sse/chromium.src,crosswalk-project/chromium-crosswalk-efl,krieger-od/nwjs_chromium.src,PeterWangIntel/chromium-crosswalk,hujiajie/pa-chromium,Just-D/chromium-1,ChromiumWebApps/chromium,hgl888/chromium-crosswalk-efl,Chilledheart/chromium,mogoweb/chromium-crosswalk,bright-sparks/chromium-spacewalk,ondra-novak/chromium.src,dednal/chromium.src,axinging/chromium-crosswalk,hgl888/chromium-crosswalk-efl,Jonekee/chromium.src,mohamed--abdel-maksoud/chromium.src,nacl-webkit/chrome_deps,hujiajie/pa-chromium,hujiajie/pa-chromium,mogoweb/chromium-crosswalk,dushu1203/chromium.src,TheTypoMaster/chromium-crosswalk,bright-sparks/chromium-spacewalk,dushu1203/chromium.src,anirudhSK/chromium,zcbenz/cefode-chromium,ltilve/chromium,mogoweb/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,axinging/chromium-crosswalk,fujunwei/chromium-crosswalk,Jonekee/chromium.src,hgl888/chromium-crosswalk,ChromiumWebApps/chromium,Fireblend/chromium-crosswalk,pozdnyakov/chromium-crosswalk,axinging/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,nacl-webkit/chrome_deps,Fireblend/chromium-crosswalk,Pluto-tv/chromium-crosswalk,Just-D/chromium-1,littlstar/chromium.src,zcbenz/cefode-chromium,pozdnyakov/chromium-crosswalk,hujiajie/pa-chromium,ltilve/chromium,mohamed--abdel-maksoud/chromium.src,krieger-od/nwjs_chromium.src,M4sse/chromium.src,chuan9/chromium-crosswalk,dushu1203/chromium.src,TheTypoMaster/chromium-crosswalk,fujunwei/chromium-crosswalk,bright-sparks/chromium-spacewalk,patrickm/chromium.src,anirudhSK/chromium,jaruba/chromium.src,anirudhSK/chromium,axinging/chromium-crosswalk,ltilve/chromium,krieger-od/nwjs_chromium.src,markYoungH/chromium.src,krieger-od/nwjs_chromium.src,junmin-zhu/chromium-rivertrail,crosswalk-project/chromium-crosswalk-efl,anirudhSK/chromium,crosswalk-project/chromium-crosswalk-efl,timopulkkinen/BubbleFish,crosswalk-project/chromium-crosswalk-efl,hujiajie/pa-chromium,chuan9/chromium-crosswalk,hgl888/chromium-crosswalk-efl,PeterWangIntel/chromium-crosswalk,Just-D/chromium-1,hgl888/chromium-crosswalk-efl,crosswalk-project/chromium-crosswalk-efl,ChromiumWebApps/chromium,markYoungH/chromium.src,M4sse/chromium.src,hgl888/chromium-crosswalk,zcbenz/cefode-chromium,timopulkkinen/BubbleFish,mogoweb/chromium-crosswalk,Pluto-tv/chromium-crosswalk,ltilve/chromium,dushu1203/chromium.src,chuan9/chromium-crosswalk,chuan9/chromium-crosswalk,jaruba/chromium.src,Fireblend/chromium-crosswalk,pozdnyakov/chromium-crosswalk,jaruba/chromium.src,bright-sparks/chromium-spacewalk,hujiajie/pa-chromium,markYoungH/chromium.src,patrickm/chromium.src,dednal/chromium.src,nacl-webkit/chrome_deps,mogoweb/chromium-crosswalk,littlstar/chromium.src,mohamed--abdel-maksoud/chromium.src,axinging/chromium-crosswalk,junmin-zhu/chromium-rivertrail,junmin-zhu/chromium-rivertrail,axinging/chromium-crosswalk,zcbenz/cefode-chromium,M4sse/chromium.src,nacl-webkit/chrome_deps,littlstar/chromium.src,krieger-od/nwjs_chromium.src,fujunwei/chromium-crosswalk,chuan9/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,Jonekee/chromium.src,PeterWangIntel/chromium-crosswalk,dednal/chromium.src,jaruba/chromium.src,fujunwei/chromium-crosswalk,axinging/chromium-crosswalk,markYoungH/chromium.src,hujiajie/pa-chromium,hgl888/chromium-crosswalk-efl,hujiajie/pa-chromium,nacl-webkit/chrome_deps,axinging/chromium-crosswalk,junmin-zhu/chromium-rivertrail,fujunwei/chromium-crosswalk,ondra-novak/chromium.src,krieger-od/nwjs_chromium.src,timopulkkinen/BubbleFish,ChromiumWebApps/chromium,TheTypoMaster/chromium-crosswalk,timopulkkinen/BubbleFish,Chilledheart/chromium,M4sse/chromium.src,junmin-zhu/chromium-rivertrail,ondra-novak/chromium.src,zcbenz/cefode-chromium,dushu1203/chromium.src,axinging/chromium-crosswalk,mogoweb/chromium-crosswalk,ondra-novak/chromium.src,Chilledheart/chromium,timopulkkinen/BubbleFish,Jonekee/chromium.src,dednal/chromium.src,hgl888/chromium-crosswalk-efl,junmin-zhu/chromium-rivertrail,ltilve/chromium,mohamed--abdel-maksoud/chromium.src,zcbenz/cefode-chromium,pozdnyakov/chromium-crosswalk,bright-sparks/chromium-spacewalk,Jonekee/chromium.src,PeterWangIntel/chromium-crosswalk,timopulkkinen/BubbleFish,dushu1203/chromium.src,Just-D/chromium-1,pozdnyakov/chromium-crosswalk,Pluto-tv/chromium-crosswalk,pozdnyakov/chromium-crosswalk,Chilledheart/chromium,mohamed--abdel-maksoud/chromium.src,anirudhSK/chromium,hgl888/chromium-crosswalk,ltilve/chromium,ChromiumWebApps/chromium,anirudhSK/chromium,dushu1203/chromium.src,markYoungH/chromium.src,TheTypoMaster/chromium-crosswalk,Fireblend/chromium-crosswalk,markYoungH/chromium.src,jaruba/chromium.src,hgl888/chromium-crosswalk-efl,dednal/chromium.src,junmin-zhu/chromium-rivertrail,jaruba/chromium.src
|
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 2015.
echo Please see https://github.com/dotnet/wcf/blob/master/Documentation/developer-guide.md for build instructions.
exit /b 1
)
:EnvSet
:: Log build command line
set _buildproj=%~dp0..\CertificateGenerator\CertificateGenerator.sln
set _buildlog=%~dp0..\..\..\..\msbuildCertificateGenerator.log
set _buildprefix=echo
set _buildpostfix=^> "%_buildlog%"
set cmd=msbuild /p:Configuration=Release /t:restore;build "%_buildproj%" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%_buildlog%";Append %*
echo %cmd%
%cmd%
set BUILDERRORLEVEL=%ERRORLEVEL%
:AfterBuild
echo.
:: Pull the build summary from the log file
findstr /ir /c:".*Warning(s)" /c:".*Error(s)" /c:"Time Elapsed.*" "%_buildlog%"
echo Build Exit Code = %BUILDERRORLEVEL%
exit /b %BUILDERRORLEVEL%
|
@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/master/Documentation/developer-guide.md for build instructions.
exit /b 1
)
:EnvSet
:: Log build command line
set _buildproj=%~dp0..\CertificateGenerator\CertificateGenerator.sln
set _buildlog=%~dp0..\..\..\..\msbuildCertificateGenerator.log
set _buildprefix=echo
set _buildpostfix=^> "%_buildlog%"
set cmd=msbuild /p:Configuration=Release /t:restore;build "%_buildproj%" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%_buildlog%";Append %*
echo %cmd%
%cmd%
set BUILDERRORLEVEL=%ERRORLEVEL%
:AfterBuild
echo.
:: Pull the build summary from the log file
findstr /ir /c:".*Warning(s)" /c:".*Error(s)" /c:"Time Elapsed.*" "%_buildlog%"
echo Build Exit Code = %BUILDERRORLEVEL%
exit /b %BUILDERRORLEVEL%
|
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 /r') DO @rmdir "%%D"
popd
move Package "%1"
"%S7Z%" a "%1.7z" "%1"
|
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 /r') DO @rmdir "%%D"
popd
xcopy /e /y Package\lib\cmake\install Package\lib\cmake
move Package "%1"
"%S7Z%" a "%1.7z" "%1"
|
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
|
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
|
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
setup-x86_64.exe -R "C:\cygwin64" -s http://mirror.switch.ch/ftp/mirror/cygwin/ -q -g -P curl,zsh,git,vim,wget,xz,tar,gawk,bzip2,subversion,zlib,fontconfig,clang,cmake,lua,perl,the_silver_searcher
set script_path=%~dp0
set repo_path=%script_path%\..\
set bash=c:\cygwin64\bin\bash.exe --login -c
for /f "delims=" %%A in ('%bash% "cd `cygpath $HOMEPATH`/dev/dotfiles && git rev-parse --abbrev-ref HEAD"') do set "branch=%%A"
%bash% 'echo "branch is $branch"'
%bash% "cp -vr `cygpath $HOMEPATH`/.ssh $HOME/"
%bash% "export OUTER_CLONE=`cygpath $repo_path` && $script_path/build_insider.sh"
|
@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://mirror.switch.ch/ftp/mirror/cygwin/ -q -g -P curl,zsh,git,vim,wget,xz,tar,gawk,bzip2,subversion,zlib,fontconfig,clang,cmake,lua,perl,the_silver_searcher
set script_path=%~dp0
set repo_path=%script_path%\..\
set bash=c:\cygwin64\bin\bash.exe --login -c
for /f "delims=" %%A in ('%bash% "cd `cygpath $HOMEPATH`/dev/dotfiles && git rev-parse --abbrev-ref HEAD"') do set "branch=%%A"
%bash% 'echo "branch is $branch"'
%bash% "cp -vr `cygpath $HOMEPATH`/.ssh $HOME/"
%bash% "export OUTER_CLONE=`cygpath $repo_path` && $script_path/build_insider.sh"
|
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
ECHO Missing Config file
GOTO End1
:End1
@ECHO ON
|
@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 Missing Config file
GOTO End1
:End1
@ECHO ON
|
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.classloader.singleThreadLoads=true -Dosgi.configuration.area=%ran% -splash:splashscreen.png -XX:MaxPermSize=128M -XX:+UseG1GC -Xmx1G -XX:MaxPermSize=128M %FLAG% -jar "%PWD%/plugins/org.eclipse.equinox.launcher.jar" -consoleLog -cp "%PWD%/openmole-plugins" -gp "%PWD%/openmole-plugins-gui" %*
rmdir /s /q %ran%
|
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.location="%PWD%\" -Dosgi.classloader.singleThreadLoads=true -Dosgi.configuration.area=%ran% -splash:splashscreen.png -XX:MaxPermSize=128M -XX:+UseG1GC -Xmx1G -XX:MaxPermSize=128M %FLAG% -jar "%PWD%/plugins/org.eclipse.equinox.launcher.jar" -consoleLog -cp "%PWD%/openmole-plugins" -gp "%PWD%/openmole-plugins-gui" %*
rmdir /s /q %ran%
|
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 ..\..\..\Rel\_Deployment\httpcore-4.1.4.jar .
copy ..\..\..\Rel\_Deployment\httpmime-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\je-6.3.8.jar .
copy ..\..\..\Rel\_Deployment\rel0000.jar .
copy ..\..\..\Rel\_Deployment\relclient.jar .
copy ..\..\..\Rel\_Deployment\relshared.jar .
|
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 ..\..\..\Rel\_Deployment\httpcore-4.1.4.jar .
copy ..\..\..\Rel\_Deployment\httpmime-4.1.3.jar .
copy ..\..\..\Rel\_Deployment\je-7.0.6.jar .
copy ..\..\..\Rel\_Deployment\rel0000.jar .
copy ..\..\..\Rel\_Deployment\relclient.jar .
copy ..\..\..\Rel\_Deployment\relshared.jar .
|
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/discount-2.1.6-win32/markdown.exe -F 0x4 -o README.html OSVR-Unity/README.md
move README.html OSVR-Unity-Dist\
|
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
|
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 everything else.
::Generally, only actual developers will find this useful. The 7-zip.bat is universally functional though.
::Currently the min file is generated manually with Notepad++'s JSTool plugin which has JSMin built in. This may change in the future.
::deploy-sync expects git available in PATH and ready to go.
@echo off
::Move into chrome directory, zip it, then return here.
cd chrome && call "7-zip.bat" && cd ..
::Open the chrome extension editing page on webstore.
explorer "https://chrome.google.com/webstore/developer/edit/jdjhhapoddhnimgdemnpbfagndcnmhii"
::Checkout psdle.js, psdle.user.js, and psdle.min.js to gh-pages.
call "deploy-sync.bat"
pause
|
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\Build\XSerializer.res /dll /key=..\XSerializer\XSerializer.snk
nuget pack ..\XSerializer\XSerializer.csproj -Properties Configuration=Build
|
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 /dll /key=..\XSerializer\XSerializer.snk
nuget pack ..\XSerializer\XSerializer.csproj -Properties Configuration=Build
|
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
|
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=%PREFIX% ..
if errorlevel 1 exit 1
cmake --build .
if errorlevel 1 exit 1
:: Install executables to bin directory
cmake --build . --target install
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 "MinGW Makefiles" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=%PREFIX% ..
if errorlevel 1 exit 1
cmake --build .
if errorlevel 1 exit 1
:: Install executables to bin directory
cmake --build . --target install
if errorlevel 1 exit 1
:: Install tcplotter
cd "%SRC_DIR%"
%PYTHON% -m pip install . -vv
|
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/mbunit-v3,Gallio/mbunit-v3,ajayanandgit/mbunit-v3,Gallio/mbunit-v3,Gallio/mbunit-v3,xJom/mbunit-v3,xJom/mbunit-v3,Gallio/mbunit-v3,xJom/mbunit-v3
|
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" -f parseable sasview-install/sasview*.egg/sas sasview > test/sasview.txt
cd %WORKSPACE%
|
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-install/sasview*.egg/sas sasview > test/sasview.txt
cd %WORKSPACE%
|
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 driveAvailable="Do you have a 2nd drive (eg %secondDrive%) Y/N: "
IF /I "%driveAvailable%"=="Y" SET "driveParam=-u %secondDrive%"
SET newLocation=
SET /p newLocation="Where is the RF2 Archive? [%rf2Archive%]: "
IF NOT [%newLocation%]==[] SET "rf2Archive=%newLocation%"
FOR %%a IN (%*) DO (
IF /I "%%a"=="-d" SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080"
)
@echo on
java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar %driveParam% %* %rf2Archive%
|
@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 driveAvailable="Do you have a 2nd drive? (eg %secondDrive%) Y/N: "
IF /I "%driveAvailable%"=="Y" SET "driveParam=-u %secondDrive%"
SET newLocation=
SET /p newLocation="Where is the RF2 Archive? [%rf2Archive%]: "
IF NOT [%newLocation%]==[] SET "rf2Archive=%newLocation%"
FOR %%a IN (%*) DO (
IF /I "%%a"=="-d" SET "debugParams=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080"
)
@echo on
java -jar %memParams% %debugParams% target\RF2toRF1Converter.jar %driveParam% %* %rf2Archive%
|
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 /F "skip=1 delims=" %%i IN (Version.txt) DO IF NOT DEFINED RELEASE SET RELEASE=%%i
FOR /F "skip=2 delims=" %%i IN (Version.txt) DO IF NOT DEFINED COMMENT SET COMMENT=%%i
SET VERSION=%RELEASE%
IF [%COMMENT%] EQU [] (SET VERSION=%RELEASE%) ELSE (SET VERSION=%RELEASE%-%COMMENT%)
ECHO.
ECHO Building CallMeMaybe %VERSION%
ECHO.
CALL dotnet restore CallMeMaybe.sln
CALL dotnet msbuild CallMeMaybe.sln /p:OutputPath=..\artifacts /p:Configuration=Release
:success
ECHO.
ECHO No errors were detected!
ECHO There may still be some in the output, which you would need to investigate.
ECHO Warnings are usually normal.
ECHO.
GOTO :EOF
:error
ECHO.
ECHO Errors were detected!
ECHO.
|
@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_VERSION%
SET COMMENT=%MAYBE_PRERELEASE_SUFFIX%
FOR /F "skip=1 delims=" %%i IN (Version.txt) DO IF NOT DEFINED RELEASE SET RELEASE=%%i
FOR /F "skip=2 delims=" %%i IN (Version.txt) DO IF NOT DEFINED COMMENT SET COMMENT=%%i
SET VERSION=%RELEASE%
IF [%COMMENT%] EQU [] (SET VERSION=%RELEASE%) ELSE (SET VERSION=%RELEASE%-%COMMENT%)
ECHO.
ECHO Building CallMeMaybe %VERSION%
ECHO.
CALL dotnet restore CallMeMaybe.sln
CALL dotnet msbuild CallMeMaybe.sln /p:OutputPath=..\artifacts /p:Configuration=Release
:success
ECHO.
ECHO No errors were detected!
ECHO There may still be some in the output, which you would need to investigate.
ECHO Warnings are usually normal.
ECHO.
GOTO :EOF
:error
ECHO.
ECHO Errors were detected!
ECHO.
|
Set default version to .yml file
|
Set default version to .yml file
|
Batchfile
|
mit
|
j2jensen/CallMeMaybe
|
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 /B 1
cmake -D CMAKE_BUILD_TYPE=Release -A x64 . || EXIT /B 1
cmake --build . --config Release --clean-first || EXIT /B 1
ctest -C Release --output-on-failure -E dfa^|exhaustive^|random || EXIT /B 1
EXIT /B 0
|
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 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Release -G "Visual Studio 12 2013" -A x64 . || EXIT /B 1
cmake --build . --config Release --clean-first || EXIT /B 1
ctest -C Release --output-on-failure -E dfa^|exhaustive^|random || EXIT /B 1
EXIT /B 0
|
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 <[email protected]>
|
Batchfile
|
bsd-3-clause
|
google/re2,google/re2,google/re2,google/re2,google/re2
|
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%" NUnitFramework.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.exe
if not defined buildtool (echo no MSBuild.exe or xbuild was found>&2 & exit /b 42)
if defined buildtool "%buildtool%" %~dp0NUnitFramework.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/nunit,NikolayPianikov/nunit,dicko2/nunit,NarohLoyahl/nunit,michal-franc/nunit,mikkelbu/nunit,danielmarbach/nunit,agray/nunit,elbaloo/nunit,danielmarbach/nunit,pcalin/nunit,modulexcite/nunit,passaro/nunit,mikkelbu/nunit,NikolayPianikov/nunit,NarohLoyahl/nunit,Green-Bug/nunit,Green-Bug/nunit,pflugs30/nunit,passaro/nunit,NarohLoyahl/nunit,Suremaker/nunit,danielmarbach/nunit,Therzok/nunit,jnm2/nunit,nivanov1984/nunit,akoeplinger/nunit,JustinRChou/nunit,ArsenShnurkov/nunit,acco32/nunit,mjedrzejek/nunit,pflugs30/nunit,modulexcite/nunit,michal-franc/nunit,acco32/nunit,jhamm/nunit,JustinRChou/nunit,zmaruo/nunit,JohanO/nunit,elbaloo/nunit,modulexcite/nunit,cPetru/nunit-params,Green-Bug/nunit,OmicronPersei/nunit,akoeplinger/nunit,mjedrzejek/nunit,appel1/nunit,OmicronPersei/nunit,zmaruo/nunit,michal-franc/nunit,dicko2/nunit,jhamm/nunit,agray/nunit,dicko2/nunit,ChrisMaddock/nunit,Therzok/nunit,nunit/nunit,zmaruo/nunit,ggeurts/nunit,Therzok/nunit,JohanO/nunit,nivanov1984/nunit,acco32/nunit,jeremymeng/nunit
|
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" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN%
%WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && buildkite-agent.exe artifact upload "%current_path%\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" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN%
%WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && cd "%current_path%\installer\" && buildkite-agent.exe artifact upload "*.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/kolibri,DXCanas/kolibri,mrpau/kolibri,DXCanas/kolibri,learningequality/kolibri,indirectlylit/kolibri,learningequality/kolibri,lyw07/kolibri,lyw07/kolibri,benjaoming/kolibri,jonboiser/kolibri
|
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/windows/checkout-banshee.bat )
call git clone git://git.gnome.org/banshee
if not exist banshee goto failure
cd banshee
call git submodule update --init
call git clone git://gitorious.org/banshee/windows-binaries.git bin
if not exist bin goto failure
echo "Checkout script finished. Banshee is now checked out into the banshee folder. Build it with build\windows\build-banshee.bat or your favorite IDE using Banshee.sln"
pause
:failure
echo "There was a problem during the checkout. Please see the message above."
|
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/windows/checkout-banshee.bat )
@echo off
call git clone git://git.gnome.org/banshee
if not exist banshee goto failure
cd banshee
call git submodule update --init
call git clone git://gitorious.org/banshee/windows-binaries.git bin
if not exist bin goto failure
echo "Checkout script finished. Banshee is now checked out into the banshee folder. Build it with build\windows\build-banshee.bat or your favorite IDE using Banshee.sln"
pause
goto :eof
:failure
echo "There was a problem during the checkout. Please see the message above."
|
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/banshee,Carbenium/banshee,stsundermann/banshee,babycaseny/banshee,mono-soc-2011/banshee,ixfalia/banshee,Dynalon/banshee-osx,ixfalia/banshee,GNOME/banshee,babycaseny/banshee,ixfalia/banshee,dufoli/banshee,mono-soc-2011/banshee,babycaseny/banshee,GNOME/banshee,GNOME/banshee,Carbenium/banshee,Dynalon/banshee-osx,stsundermann/banshee,GNOME/banshee,stsundermann/banshee,arfbtwn/banshee,dufoli/banshee,arfbtwn/banshee,ixfalia/banshee,babycaseny/banshee,mono-soc-2011/banshee,GNOME/banshee,mono-soc-2011/banshee,dufoli/banshee,stsundermann/banshee,arfbtwn/banshee,Dynalon/banshee-osx,dufoli/banshee,dufoli/banshee,Carbenium/banshee,arfbtwn/banshee,arfbtwn/banshee,babycaseny/banshee,ixfalia/banshee,babycaseny/banshee,ixfalia/banshee,dufoli/banshee,Carbenium/banshee,arfbtwn/banshee,Dynalon/banshee-osx,babycaseny/banshee,GNOME/banshee,Dynalon/banshee-osx,mono-soc-2011/banshee,mono-soc-2011/banshee,stsundermann/banshee
|
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 %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/3076c2ce36a3e11a71ea092098a40b11cb55d548
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 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,juvchan/kudu,bbauya/kudu,projectkudu/kudu,sitereactor/kudu,YOTOV-LIMITED/kudu,duncansmart/kudu,shibayan/kudu,shrimpy/kudu,bbauya/kudu,kali786516/kudu,duncansmart/kudu,shibayan/kudu,sitereactor/kudu,kenegozi/kudu,puneet-gupta/kudu,mauricionr/kudu,projectkudu/kudu,badescuga/kudu,mauricionr/kudu,MavenRain/kudu,shrimpy/kudu,puneet-gupta/kudu,bbauya/kudu,dev-enthusiast/kudu,uQr/kudu,shrimpy/kudu,juvchan/kudu,duncansmart/kudu,YOTOV-LIMITED/kudu,shibayan/kudu,dev-enthusiast/kudu,duncansmart/kudu,YOTOV-LIMITED/kudu,oliver-feng/kudu,uQr/kudu,MavenRain/kudu,juoni/kudu,chrisrpatterson/kudu,badescuga/kudu,EricSten-MSFT/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,sitereactor/kudu,MavenRain/kudu,oliver-feng/kudu,juvchan/kudu,chrisrpatterson/kudu,badescuga/kudu,oliver-feng/kudu,kenegozi/kudu,sitereactor/kudu,kali786516/kudu,barnyp/kudu,mauricionr/kudu,EricSten-MSFT/kudu,barnyp/kudu,chrisrpatterson/kudu,juoni/kudu,YOTOV-LIMITED/kudu,kenegozi/kudu,EricSten-MSFT/kudu,uQr/kudu,barnyp/kudu,EricSten-MSFT/kudu,bbauya/kudu,dev-enthusiast/kudu,juoni/kudu,projectkudu/kudu,MavenRain/kudu,puneet-gupta/kudu
|
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-community,amith01994/intellij-community,ryano144/intellij-community,kdwink/intellij-community,adedayo/intellij-community,holmes/intellij-community,wreckJ/intellij-community,suncycheng/intellij-community,wreckJ/intellij-community,hurricup/intellij-community,SerCeMan/intellij-community,hurricup/intellij-community,apixandru/intellij-community,ivan-fedorov/intellij-community,Distrotech/intellij-community,ibinti/intellij-community,Lekanich/intellij-community,clumsy/intellij-community,idea4bsd/idea4bsd,idea4bsd/idea4bsd,akosyakov/intellij-community,MER-GROUP/intellij-community,fnouama/intellij-community,ThiagoGarciaAlves/intellij-community,lucafavatella/intellij-community,fitermay/intellij-community,pwoodworth/intellij-community,ftomassetti/intellij-community,lucafavatella/intellij-community,FHannes/intellij-community,vladmm/intellij-community,salguarnieri/intellij-community,hurricup/intellij-community,MER-GROUP/intellij-community,ernestp/consulo,ibinti/intellij-community,consulo/consulo,petteyg/intellij-community,ol-loginov/intellij-community,pwoodworth/intellij-community,vladmm/intellij-community,izonder/intellij-community,petteyg/intellij-community,MichaelNedzelsky/intellij-community,blademainer/intellij-community,FHannes/intellij-community,izonder/intellij-community,akosyakov/intellij-community,asedunov/intellij-community,kool79/intellij-community,fitermay/intellij-community,kdwink/intellij-community,michaelgallacher/intellij-community,amith01994/intellij-community,akosyakov/intellij-community,asedunov/intellij-community,samthor/intellij-community,ernestp/consulo,samthor/intellij-community,vvv1559/intellij-community,gnuhub/intellij-community,robovm/robovm-studio,idea4bsd/idea4bsd,xfournet/intellij-community,muntasirsyed/intellij-community,allotria/intellij-community,ryano144/intellij-community,kool79/intellij-community,ThiagoGarciaAlves/intellij-community,petteyg/intellij-community,MichaelNedzelsky/intellij-community,semonte/intellij-community,MER-GROUP/intellij-community,MichaelNedzelsky/intellij-community,apixandru/intellij-community,idea4bsd/idea4bsd,diorcety/intellij-community,adedayo/intellij-community,adedayo/intellij-community,supersven/intellij-community,joewalnes/idea-community,jagguli/intellij-community,fitermay/intellij-community,izonder/intellij-community,jexp/idea2,alphafoobar/intellij-community,youdonghai/intellij-community,ftomassetti/intellij-community,diorcety/intellij-community,salguarnieri/intellij-community,mglukhikh/intellij-community,mglukhikh/intellij-community,amith01994/intellij-community,adedayo/intellij-community,nicolargo/intellij-community,robovm/robovm-studio,fitermay/intellij-community,Distrotech/intellij-community,fitermay/intellij-community,FHannes/intellij-community,slisson/intellij-community,hurricup/intellij-community,samthor/intellij-community,akosyakov/intellij-community,ernestp/consulo,vladmm/intellij-community,supersven/intellij-community,fitermay/intellij-community,SerCeMan/intellij-community,izonder/intellij-community,retomerz/intellij-community,joewalnes/idea-community,clumsy/intellij-community,retomerz/intellij-community,idea4bsd/idea4bsd,lucafavatella/intellij-community,dslomov/intellij-community,MER-GROUP/intellij-community,fnouama/intellij-community,jagguli/intellij-community,slisson/intellij-community,fitermay/intellij-community,holmes/intellij-community,michaelgallacher/intellij-community,tmpgit/intellij-community,samthor/intellij-community,pwoodworth/intellij-community,ol-loginov/intellij-community,signed/intellij-community,amith01994/intellij-community,jagguli/intellij-community,youdonghai/intellij-community,mglukhikh/intellij-community,MichaelNedzelsky/intellij-community,jexp/idea2,signed/intellij-community,michaelgallacher/intellij-community,adedayo/intellij-community,jagguli/intellij-community,ivan-fedorov/intellij-community,muntasirsyed/intellij-community,pwoodworth/intellij-community,pwoodworth/intellij-community,ibinti/intellij-community,alphafoobar/intellij-community,ivan-fedorov/intellij-community,suncycheng/intellij-community,SerCeMan/intellij-community,petteyg/intellij-community,SerCeMan/intellij-community,diorcety/intellij-community,amith01994/intellij-community,da1z/intellij-community,alphafoobar/intellij-community,ibinti/intellij-community,kdwink/intellij-community,retomerz/intellij-community,da1z/intellij-community,tmpgit/intellij-community,diorcety/intellij-community,alphafoobar/intellij-community,akosyakov/intellij-community,youdonghai/intellij-community,kdwink/intellij-community,MichaelNedzelsky/intellij-community,dslomov/intellij-community,Distrotech/intellij-community,caot/intellij-community,fengbaicanhe/intellij-community,jagguli/intellij-community,retomerz/intellij-community,nicolargo/intellij-community,SerCeMan/intellij-community,xfournet/intellij-community,lucafavatella/intellij-community,mglukhikh/intellij-community,asedunov/intellij-community,petteyg/intellij-community,orekyuu/intellij-community,retomerz/intellij-community,vladmm/intellij-community,FHannes/intellij-community,amith01994/intellij-community,slisson/intellij-community,vladmm/intellij-community,ThiagoGarciaAlves/intellij-community,holmes/intellij-community,suncycheng/intellij-community,blademainer/intellij-community,wreckJ/intellij-community,wreckJ/intellij-community,suncycheng/intellij-community,caot/intellij-community,adedayo/intellij-community,Distrotech/intellij-community,apixandru/intellij-community,kool79/intellij-community,fnouama/intellij-community,suncycheng/intellij-community,alphafoobar/intellij-community,hurricup/intellij-community,tmpgit/intellij-community,retomerz/intellij-community,Lekanich/intellij-community,lucafavatella/intellij-community,vvv1559/intellij-community,hurricup/intellij-community,orekyuu/intellij-community,MichaelNedzelsky/intellij-community,youdonghai/intellij-community,fnouama/intellij-community,hurricup/intellij-community,wreckJ/intellij-community,asedunov/intellij-community,wreckJ/intellij-community,retomerz/intellij-community,salguarnieri/intellij-community,asedunov/intellij-community,signed/intellij-community,vvv1559/intellij-community,joewalnes/idea-community,caot/intellij-community,ibinti/intellij-community,da1z/intellij-community,ernestp/consulo,tmpgit/intellij-community,idea4bsd/idea4bsd,suncycheng/intellij-community,asedunov/intellij-community,ahb0327/intellij-community,tmpgit/intellij-community,TangHao1987/intellij-community,asedunov/intellij-community,Distrotech/intellij-community,holmes/intellij-community,FHannes/intellij-community,tmpgit/intellij-community,MER-GROUP/intellij-community,kdwink/intellij-community,consulo/consulo,apixandru/intellij-community,ol-loginov/intellij-community,izonder/intellij-community,ahb0327/intellij-community,fnouama/intellij-community,ThiagoGarciaAlves/intellij-community,Distrotech/intellij-community,diorcety/intellij-community,supersven/intellij-community,kdwink/intellij-community,amith01994/intellij-community,akosyakov/intellij-community,michaelgallacher/intellij-community,fnouama/intellij-community,robovm/robovm-studio,ahb0327/intellij-community,MER-GROUP/intellij-community,pwoodworth/intellij-community,suncycheng/intellij-community,FHannes/intellij-community,samthor/intellij-community,robovm/robovm-studio,ivan-fedorov/intellij-community,dslomov/intellij-community,ahb0327/intellij-community,izonder/intellij-community,lucafavatella/intellij-community,kool79/intellij-community,ol-loginov/intellij-community,signed/intellij-community,adedayo/intellij-community,ahb0327/intellij-community,alphafoobar/intellij-community,diorcety/intellij-community,muntasirsyed/intellij-community,salguarnieri/intellij-community,orekyuu/intellij-community,lucafavatella/intellij-community,fengbaicanhe/intellij-community,vvv1559/intellij-community,ftomassetti/intellij-community,kool79/intellij-community,clumsy/intellij-community,fnouama/intellij-community,vvv1559/intellij-community,izonder/intellij-community,blademainer/intellij-community,Lekanich/intellij-community,clumsy/intellij-community,ryano144/intellij-community,ftomassetti/intellij-community,nicolargo/intellij-community,vladmm/intellij-community,SerCeMan/intellij-community,allotria/intellij-community,orekyuu/intellij-community,samthor/intellij-community,ftomassetti/intellij-community,lucafavatella/intellij-community,TangHao1987/intellij-community,amith01994/intellij-community,holmes/intellij-community,ThiagoGarciaAlves/intellij-community,slisson/intellij-community,idea4bsd/idea4bsd,asedunov/intellij-community,MER-GROUP/intellij-community,ibinti/intellij-community,slisson/intellij-community,allotria/intellij-community,TangHao1987/intellij-community,caot/intellij-community,robovm/robovm-studio,youdonghai/intellij-community,ahb0327/intellij-community,ThiagoGarciaAlves/intellij-community,michaelgallacher/intellij-community,jagguli/intellij-community,tmpgit/intellij-community,ryano144/intellij-community,blademainer/intellij-community,ftomassetti/intellij-community,samthor/intellij-community,hurricup/intellij-community,TangHao1987/intellij-community,alphafoobar/intellij-community,michaelgallacher/intellij-community,FHannes/intellij-community,semonte/intellij-community,michaelgallacher/intellij-community,ftomassetti/intellij-community,ivan-fedorov/intellij-community,joewalnes/idea-community,blademainer/intellij-community,hurricup/intellij-community,MER-GROUP/intellij-community,pwoodworth/intellij-community,ryano144/intellij-community,semonte/intellij-community,supersven/intellij-community,vvv1559/intellij-community,wreckJ/intellij-community,MER-GROUP/intellij-community,wreckJ/intellij-community,holmes/intellij-community,jagguli/intellij-community,ivan-fedorov/intellij-community,muntasirsyed/intellij-community,mglukhikh/intellij-community,xfournet/intellij-community,nicolargo/intellij-community,allotria/intellij-community,fnouama/intellij-community,diorcety/intellij-community,muntasirsyed/intellij-community,tmpgit/intellij-community,jexp/idea2,SerCeMan/intellij-community,suncycheng/intellij-community,asedunov/intellij-community,xfournet/intellij-community,lucafavatella/intellij-community,kool79/intellij-community,dslomov/intellij-community,allotria/intellij-community,salguarnieri/intellij-community,petteyg/intellij-community,semonte/intellij-community,TangHao1987/intellij-community,apixandru/intellij-community,samthor/intellij-community,idea4bsd/idea4bsd,Lekanich/intellij-community,ftomassetti/intellij-community,ol-loginov/intellij-community,adedayo/intellij-community,slisson/intellij-community,youdonghai/intellij-community,nicolargo/intellij-community,ThiagoGarciaAlves/intellij-community,signed/intellij-community,slisson/intellij-community,gnuhub/intellij-community,apixandru/intellij-community,apixandru/intellij-community,asedunov/intellij-community,MichaelNedzelsky/intellij-community,signed/intellij-community,dslomov/intellij-community,youdonghai/intellij-community,hurricup/intellij-community,alphafoobar/intellij-community,MichaelNedzelsky/intellij-community,Distrotech/intellij-community,da1z/intellij-community,gnuhub/intellij-community,supersven/intellij-community,robovm/robovm-studio,salguarnieri/intellij-community,lucafavatella/intellij-community,xfournet/intellij-community,apixandru/intellij-community,ol-loginov/intellij-community,izonder/intellij-community,diorcety/intellij-community,akosyakov/intellij-community,akosyakov/intellij-community,allotria/intellij-community,signed/intellij-community,salguarnieri/intellij-community,alphafoobar/intellij-community,adedayo/intellij-community,vvv1559/intellij-community,dslomov/intellij-community,tmpgit/intellij-community,orekyuu/intellij-community,tmpgit/intellij-community,ThiagoGarciaAlves/intellij-community,da1z/intellij-community,orekyuu/intellij-community,suncycheng/intellij-community,mglukhikh/intellij-community,consulo/consulo,fengbaicanhe/intellij-community,clumsy/intellij-community,ibinti/intellij-community,ryano144/intellij-community,supersven/intellij-community,diorcety/intellij-community,pwoodworth/intellij-community,jexp/idea2,kdwink/intellij-community,asedunov/intellij-community,ernestp/consulo,suncycheng/intellij-community,adedayo/intellij-community,fnouama/intellij-community,amith01994/intellij-community,ivan-fedorov/intellij-community,fengbaicanhe/intellij-community,clumsy/intellij-community,gnuhub/intellij-community,Lekanich/intellij-community,SerCeMan/intellij-community,TangHao1987/intellij-community,caot/intellij-community,jexp/idea2,dslomov/intellij-community,lucafavatella/intellij-community,ol-loginov/intellij-community,semonte/intellij-community,blademainer/intellij-community,semonte/intellij-community,da1z/intellij-community,clumsy/intellij-community,slisson/intellij-community,orekyuu/intellij-community,semonte/intellij-community,pwoodworth/intellij-community,kool79/intellij-community,xfournet/intellij-community,asedunov/intellij-community,dslomov/intellij-community,robovm/robovm-studio,slisson/intellij-community,xfournet/intellij-community,gnuhub/intellij-community,clumsy/intellij-community,alphafoobar/intellij-community,akosyakov/intellij-community,SerCeMan/intellij-community,mglukhikh/intellij-community,SerCeMan/intellij-community,jexp/idea2,jexp/idea2,robovm/robovm-studio,xfournet/intellij-community,asedunov/intellij-community,vladmm/intellij-community,da1z/intellij-community,apixandru/intellij-community,dslomov/intellij-community,fengbaicanhe/intellij-community,ol-loginov/intellij-community,fitermay/intellij-community,akosyakov/intellij-community,amith01994/intellij-community,ol-loginov/intellij-community,akosyakov/intellij-community,robovm/robovm-studio,nicolargo/intellij-community,salguarnieri/intellij-community,ThiagoGarciaAlves/intellij-community,caot/intellij-community,fengbaicanhe/intellij-community,ftomassetti/intellij-community,wreckJ/intellij-community,fitermay/intellij-community,slisson/intellij-community,ryano144/intellij-community,Distrotech/intellij-community,apixandru/intellij-community,TangHao1987/intellij-community,vladmm/intellij-community,supersven/intellij-community,orekyuu/intellij-community,Lekanich/intellij-community,izonder/intellij-community,retomerz/intellij-community,ahb0327/intellij-community,muntasirsyed/intellij-community,da1z/intellij-community,joewalnes/idea-community,fnouama/intellij-community,adedayo/intellij-community,slisson/intellij-community,joewalnes/idea-community,blademainer/intellij-community,retomerz/intellij-community,signed/intellij-community,wreckJ/intellij-community,FHannes/intellij-community,youdonghai/intellij-community,ftomassetti/intellij-community,ibinti/intellij-community,apixandru/intellij-community,MichaelNedzelsky/intellij-community,youdonghai/intellij-community,vladmm/intellij-community,ahb0327/intellij-community,allotria/intellij-community,signed/intellij-community,caot/intellij-community,Distrotech/intellij-community,dslomov/intellij-community,da1z/intellij-community,allotria/intellij-community,ivan-fedorov/intellij-community,blademainer/intellij-community,petteyg/intellij-community,caot/intellij-community,fengbaicanhe/intellij-community,pwoodworth/intellij-community,gnuhub/intellij-community,idea4bsd/idea4bsd,TangHao1987/intellij-community,michaelgallacher/intellij-community,vvv1559/intellij-community,vvv1559/intellij-community,mglukhikh/intellij-community,alphafoobar/intellij-community,ryano144/intellij-community,ernestp/consulo,holmes/intellij-community,holmes/intellij-community,retomerz/intellij-community,ThiagoGarciaAlves/intellij-community,fitermay/intellij-community,jexp/idea2,gnuhub/intellij-community,orekyuu/intellij-community,alphafoobar/intellij-community,amith01994/intellij-community,joewalnes/idea-community,idea4bsd/idea4bsd,holmes/intellij-community,idea4bsd/idea4bsd,pwoodworth/intellij-community,vladmm/intellij-community,muntasirsyed/intellij-community,holmes/intellij-community,MER-GROUP/intellij-community,TangHao1987/intellij-community,nicolargo/intellij-community,semonte/intellij-community,FHannes/intellij-community,TangHao1987/intellij-community,Distrotech/intellij-community,kdwink/intellij-community,jagguli/intellij-community,ryano144/intellij-community,gnuhub/intellij-community,jagguli/intellij-community,pwoodworth/intellij-community,caot/intellij-community,ryano144/intellij-community,izonder/intellij-community,xfournet/intellij-community,signed/intellij-community,petteyg/intellij-community,da1z/intellij-community,petteyg/intellij-community,ryano144/intellij-community,kool79/intellij-community,mglukhikh/intellij-community,Lekanich/intellij-community,fengbaicanhe/intellij-community,semonte/intellij-community,jagguli/intellij-community,consulo/consulo,apixandru/intellij-community,retomerz/intellij-community,fitermay/intellij-community,semonte/intellij-community,allotria/intellij-community,dslomov/intellij-community,amith01994/intellij-community,ibinti/intellij-community,Lekanich/intellij-community,michaelgallacher/intellij-community,MER-GROUP/intellij-community,kool79/intellij-community,clumsy/intellij-community,ftomassetti/intellij-community,nicolargo/intellij-community,izonder/intellij-community,semonte/intellij-community,petteyg/intellij-community,signed/intellij-community,robovm/robovm-studio,da1z/intellij-community,hurricup/intellij-community,petteyg/intellij-community,apixandru/intellij-community,clumsy/intellij-community,ivan-fedorov/intellij-community,ThiagoGarciaAlves/intellij-community,tmpgit/intellij-community,MER-GROUP/intellij-community,idea4bsd/idea4bsd,clumsy/intellij-community,suncycheng/intellij-community,dslomov/intellij-community,Lekanich/intellij-community,vvv1559/intellij-community,blademainer/intellij-community,MichaelNedzelsky/intellij-community,kool79/intellij-community,youdonghai/intellij-community,ivan-fedorov/intellij-community,adedayo/intellij-community,signed/intellij-community,samthor/intellij-community,salguarnieri/intellij-community,fitermay/intellij-community,Lekanich/intellij-community,supersven/intellij-community,hurricup/intellij-community,vvv1559/intellij-community,MichaelNedzelsky/intellij-community,ibinti/intellij-community,signed/intellij-community,allotria/intellij-community,fengbaicanhe/intellij-community,fengbaicanhe/intellij-community,youdonghai/intellij-community,ivan-fedorov/intellij-community,clumsy/intellij-community,diorcety/intellij-community,FHannes/intellij-community,retomerz/intellij-community,vvv1559/intellij-community,mglukhikh/intellij-community,ibinti/intellij-community,fnouama/intellij-community,muntasirsyed/intellij-community,FHannes/intellij-community,nicolargo/intellij-community,ol-loginov/intellij-community,orekyuu/intellij-community,blademainer/intellij-community,allotria/intellij-community,SerCeMan/intellij-community,ivan-fedorov/intellij-community,nicolargo/intellij-community,robovm/robovm-studio,ol-loginov/intellij-community,gnuhub/intellij-community,supersven/intellij-community,nicolargo/intellij-community,retomerz/intellij-community,izonder/intellij-community,ryano144/intellij-community,vladmm/intellij-community,ftomassetti/intellij-community,jagguli/intellij-community,da1z/intellij-community,holmes/intellij-community,hurricup/intellij-community,akosyakov/intellij-community,mglukhikh/intellij-community,wreckJ/intellij-community,ahb0327/intellij-community,ahb0327/intellij-community,xfournet/intellij-community,orekyuu/intellij-community,joewalnes/idea-community,xfournet/intellij-community,holmes/intellij-community,fnouama/intellij-community,samthor/intellij-community,petteyg/intellij-community,kdwink/intellij-community,apixandru/intellij-community,gnuhub/intellij-community,caot/intellij-community,xfournet/intellij-community,youdonghai/intellij-community,salguarnieri/intellij-community,vvv1559/intellij-community,muntasirsyed/intellij-community,tmpgit/intellij-community,fengbaicanhe/intellij-community,supersven/intellij-community,salguarnieri/intellij-community,xfournet/intellij-community,ibinti/intellij-community,supersven/intellij-community,ahb0327/intellij-community,slisson/intellij-community,ibinti/intellij-community,michaelgallacher/intellij-community,MichaelNedzelsky/intellij-community,caot/intellij-community,caot/intellij-community,Lekanich/intellij-community,muntasirsyed/intellij-community,TangHao1987/intellij-community,ThiagoGarciaAlves/intellij-community,muntasirsyed/intellij-community,kool79/intellij-community,diorcety/intellij-community,fitermay/intellij-community,fengbaicanhe/intellij-community,kdwink/intellij-community,semonte/intellij-community,ol-loginov/intellij-community,mglukhikh/intellij-community,suncycheng/intellij-community,kdwink/intellij-community,SerCeMan/intellij-community,lucafavatella/intellij-community,idea4bsd/idea4bsd,Lekanich/intellij-community,kdwink/intellij-community,allotria/intellij-community,wreckJ/intellij-community,michaelgallacher/intellij-community,semonte/intellij-community,orekyuu/intellij-community,allotria/intellij-community,muntasirsyed/intellij-community,nicolargo/intellij-community,samthor/intellij-community,joewalnes/idea-community,TangHao1987/intellij-community,Distrotech/intellij-community,youdonghai/intellij-community,blademainer/intellij-community,blademainer/intellij-community,supersven/intellij-community,gnuhub/intellij-community,robovm/robovm-studio,consulo/consulo,mglukhikh/intellij-community,vladmm/intellij-community,michaelgallacher/intellij-community,kool79/intellij-community
|
a7b8470883772d1014927ec2b0e22f7c07521db7
|
zephir.bat
|
zephir.bat
|
@echo off
REM This file is part of the Zephir.
REM
REM (c) Zephir Team <[email protected]>
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
SET mypath=%~dp0
echo %mypath:~0,-1%
"%PHPBIN%" "%mypath%\zephir" %*
|
@echo off
rem This file is part of the Zephir.
rem
rem (c) Zephir Team <[email protected]>
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
SET mypath=%~dp0
echo %mypath:~0,-1%
"%PHPBIN%" "%mypath%\zephir" %*
|
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/__init__.py
echo. 2>_build/html/_images/__init__.py
echo. 2>_build/html/_sources/__init__.py
echo. 2>_build/html/_static/__init__.py
cd ../..
C:\Python27\python.exe setup.py bdist_msi
move dist\* prerequisites
"C:\Program Files (x86)\NSIS\makensis.exe" "iridaUploader_installer.nsi"
PAUSE
|
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. 2>_build/__init__.py
echo. 2>_build/html/__init__.py
echo. 2>_build/html/_images/__init__.py
echo. 2>_build/html/_sources/__init__.py
echo. 2>_build/html/_static/__init__.py
cd ../..
C:\Python27\python.exe setup.py bdist_msi || exit /b
move dist\* prerequisites
"C:\Program Files (x86)\NSIS\makensis.exe" "iridaUploader_installer.nsi"
PAUSE
|
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 start %OQ_HOST%:%OQ_PORT%
REM Make sure that the dbserver is up and running
call:check_django
REM Start the browser
start http://localhost:%OQ_PORT%
endlocal
exit /b 0
:check_django
setlocal
ping -n 1 %OQ_HOST
if ERRORLEVEL 1
goto check_django
endlocal
:sleep
setlocal
if exist C:\Windows\System32\timeout.exe (
timeout /t %~1 /nobreak > NUL
) else (
REM Windows XP hack
ping 192.0.2.2 -n %~1 -w 1000 > NUL
)
endlocal
|
@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 start %OQ_HOST%:%OQ_PORT%
REM Make sure that the dbserver is up and running
call:sleep 10
REM Start the browser
start http://localhost:%OQ_PORT%
endlocal
exit /b 0
:sleep
setlocal
if exist C:\Windows\System32\timeout.exe (
timeout /t %~1 /nobreak > NUL
) else (
REM Windows XP hack
ping 192.0.2.2 -n %~1 -w 1000 > NUL
)
endlocal
|
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 Files (x86)\Inno Setup 5\iscc.exe" package\windows\plus-f.iss /Obuild /FPlus-F
call aws s3 cp build/Plus-F.exe s3://download.socialthingy.com/Plus-F.exe
|
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 build\install\plus-f\runtime
call "C:\Program Files (x86)\Inno Setup 5\iscc.exe" package\windows\plus-f.iss /Obuild /FPlus-F
call aws s3 cp build/Plus-F.exe s3://download.socialthingy.com/Plus-F.exe
|
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 PYTHONPATH=%ROOTSYS%\bin;%PYTHONPATH%
set OLDPATH=
set THIS=
|
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://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@echo off
setlocal
SET NMAKE_COMMAND=%1
SHIFT
:loop
if "%1"=="" goto success
ECHO Building %1
pushd %1
nmake %NMAKE_COMMAND%
if ERRORLEVEL 1 goto error
ECHO %1 built successfully (%NMAKE_COMMAND%)
ECHO.
shift
popd
goto loop
:success
goto exit
:error
popd
ENDLOCAL
ECHO Error while making %1!
VERIFY OTHER 2>NUL
:exit
|
@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 be found at
@REM # http://opensource.org/licenses/bsd-license.php
@REM #
@REM # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
@REM # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@echo off
setlocal
SET NMAKE_COMMAND=%1
SHIFT
:loop
if "%1"=="" goto success
ECHO Building %1
pushd %1
nmake %NMAKE_COMMAND%
if ERRORLEVEL 1 goto error
ECHO %1 built successfully (%NMAKE_COMMAND%)
ECHO.
shift
popd
goto loop
:success
goto exit
:error
popd
ENDLOCAL
ECHO Error while making %1!
VERIFY OTHER 2>NUL
:exit
|
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
|
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 -DarchetypeVersion=0.8.0-SNAPSHOT -DgroupId=org.eclipse.smarthome.binding -DartifactId=org.eclipse.smarthome.binding.%2 -Dpackage=org.eclipse.smarthome.binding.%2 -DarchetypeCatalog='file://../archetype-catalog.xml' -Dversion=0.8.0-SNAPSHOT -DbindingId=%2 -DbindingIdCamelCase=%1
ENDLOCAL
|
@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 -DarchetypeVersion=0.8.0-SNAPSHOT -DgroupId=org.eclipse.smarthome.binding -DartifactId=org.eclipse.smarthome.binding.%2 -Dpackage=org.eclipse.smarthome.binding.%2 -DarchetypeCatalog='file://../archetype-catalog.xml' -Dversion=0.8.0-SNAPSHOT -DbindingId=%2 -DbindingIdCamelCase=%1
ENDLOCAL
|
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 <[email protected]>
|
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/smarthome,CrackerStealth/smarthome,paphko/smarthome,Snickermicker/smarthome,BenediktNiehues/smarthome,clinique/smarthome,peuter/smarthome,danchom/smarthome,smilzo-mobimesh/smarthome,Stratehm/smarthome,cdjackson/smarthome,AchimHentschel/smarthome,markusmazurczak/smarthome,mdbergmann/smarthome,kartben/smarthome,Snickermicker/smarthome,phxql/smarthome,phxql/smarthome,kummerer94/smarthome,AchimHentschel/smarthome,CrackerStealth/smarthome,plamen-peev/smarthome,WetwareLabs/smarthome,monnimeter/smarthome,philomatic/smarthome,CrackerStealth/smarthome,neverend92/smarthome,HandyChang/smarthome,kceiw/smarthome,kummerer94/smarthome,vilchev/eclipse-smarthome,S0urceror/smarthome,digitaldan/smarthome,danchom/smarthome,dominicdesu/smarthome,marinmitev/smarthome,S0urceror/smarthome,iivalchev/smarthome,Stratehm/smarthome,vkolotov/smarthome,ibaton/smarthome,Stratehm/smarthome,yetu/smarthome,vkolotov/smarthome,plamen-peev/smarthome,HandyChang/smarthome,GradyD/smarthome,sja/smarthome,kgoderis/smarthome,yetu/smarthome,smilzo-mobimesh/smarthome,resetnow/smarthome,CrackerStealth/smarthome,msiegele/smarthome,mdbergmann/smarthome,Mixajlo/smarthome,GradyD/smarthome,WetwareLabs/smarthome,resetnow/smarthome,Mixajlo/smarthome,kdavis-mozilla/smarthome,digitaldan/smarthome,mrguessed/smarthome,kartben/smarthome,MichaelOchel/smarthome,Mixajlo/smarthome,BenediktNiehues/smarthome,cdjackson/smarthome,chaton78/smarthome,philomatic/smarthome,markusmazurczak/smarthome,S0urceror/smarthome,markusmazurczak/smarthome,sja/smarthome,kaikreuzer/smarthome,dominicdesu/smarthome,philomatic/smarthome,BenediktNiehues/smarthome,GradyD/smarthome,marinmitev/smarthome,plamen-peev/smarthome,MichaelOchel/smarthome,dvanherbergen/smarthome,ArchibaldLeMagnifique/smarthome,kartben/smarthome,sja/smarthome,vilchev/eclipse-smarthome,fatihboy/smarthome,GradyD/smarthome,yetu/smarthome,kgoderis/smarthome,shry15harsh/smarthome,adimova/smarthome,neverend92/smarthome,chrisschauer/smarthome,kaikreuzer/smarthome,fatihboy/smarthome,monnimeter/smarthome,digitaldan/smarthome,monnimeter/smarthome,kceiw/smarthome,shry15harsh/smarthome,mdbergmann/smarthome,chrisschauer/smarthome,markusmazurczak/smarthome,Mixajlo/smarthome,vkolotov/smarthome,smilzo-mobimesh/smarthome,kummerer94/smarthome,SeelabFhdo/smarthome,AchimHentschel/smarthome,fatihboy/smarthome,marinmitev/smarthome,danchom/smarthome,ibaton/smarthome,mrguessed/smarthome,dvanherbergen/smarthome,HandyChang/smarthome,ibaton/smarthome,adimova/smarthome,neverend92/smarthome,iivalchev/smarthome,ibaton/smarthome,smilzo-mobimesh/smarthome,kaikreuzer/smarthome,msiegele/smarthome,Stratehm/smarthome,peuter/smarthome,SeelabFhdo/smarthome,chrisschauer/smarthome,resetnow/smarthome,peuter/smarthome,msiegele/smarthome,philomatic/smarthome,SeelabFhdo/smarthome,ArchibaldLeMagnifique/smarthome,kgoderis/smarthome,sja/smarthome,dominicdesu/smarthome,ArchibaldLeMagnifique/smarthome,kaikreuzer/smarthome,mdbergmann/smarthome,yetu/smarthome,clinique/smarthome,danchom/smarthome,chaton78/smarthome,kceiw/smarthome,cdjackson/smarthome,chrisschauer/smarthome,chaton78/smarthome,mrguessed/smarthome,plamen-peev/smarthome,S0urceror/smarthome,paphko/smarthome,chaton78/smarthome,kdavis-mozilla/smarthome,WetwareLabs/smarthome,digitaldan/smarthome,clinique/smarthome,Snickermicker/smarthome,paphko/smarthome,clinique/smarthome,paphko/smarthome,kummerer94/smarthome,iivalchev/smarthome,HandyChang/smarthome,mrguessed/smarthome,dominicdesu/smarthome,neverend92/smarthome,shry15harsh/smarthome,kceiw/smarthome,WetwareLabs/smarthome,peuter/smarthome,MichaelOchel/smarthome,adimova/smarthome,kgoderis/smarthome,resetnow/smarthome,MichaelOchel/smarthome,vkolotov/smarthome,kdavis-mozilla/smarthome,fatihboy/smarthome,dvanherbergen/smarthome,vilchev/eclipse-smarthome,adimova/smarthome,cdjackson/smarthome
|
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,shastings517/conda-build,dan-blanchard/conda-build,mwcraig/conda-build,shastings517/conda-build,dan-blanchard/conda-build,ilastik/conda-build,sandhujasmine/conda-build,takluyver/conda-build,rmcgibbo/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,ReimarBauer/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes
|
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 %1 %2 %3 %4 %5
goto end
:error
echo "... BUILD FAILED"
echo " The JAVA_HOME environment variable was not found."
echo " Please set the environment variable JAVA_HOME to the location"
echo " of your preferred Java installation."
:end
set LOCALCLASSPATH=
|
@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 %1 %2 %3 %4 %5
goto end
:error
echo "... BUILD FAILED"
echo " The JAVA_HOME environment variable was not found."
echo " Please set the environment variable JAVA_HOME to the location"
echo " of your preferred Java installation."
:end
set LOCALCLASSPATH=
|
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 %cntr%==5 Goto EndBad
set /A cntr=%cntr%+1
Goto LoopStart
:EndClean
REM Give an extra second to clean up
ping 127.0.0.1 -n 1 -w 1000 > nul
EXIT /B 0
:EndBad
EXIT /B 1
|
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 %cntr%==5 Goto EndBad
set /A cntr=%cntr%+1
Goto LoopStart
:EndClean
REM Give an extra second to clean up
ping 1.1.1.1 -n 1 -w 1000 > nul
EXIT /B 0
:EndBad
EXIT /B 1
|
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 exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS%
if not exist "%_VSCOMNTOOLS%" (
echo Error: Visual Studio 2015 or 2017 required.
echo Please see https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md for build instructions.
exit /b 1
)
call "%_VSCOMNTOOLS%\VsDevCmd.bat"
:Run
:: We do not want to run the first-time experience.
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
powershell -NoProfile -ExecutionPolicy unrestricted -Command "%~dp0run.ps1 -- %*"
exit /b %ERRORLEVEL%
|
@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 exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS%
if not exist "%_VSCOMNTOOLS%" (
echo Error: Visual Studio 2015 or 2017 required.
echo Please see https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md for build instructions.
exit /b 1
)
call "%_VSCOMNTOOLS%\VsDevCmd.bat"
:Run
:: We do not want to run the first-time experience.
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
pushd %~dp0
powershell -NoProfile -ExecutionPolicy unrestricted -Command "%~dp0run.ps1 -- %*"
exit /b %ERRORLEVEL%
|
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 VS installed)
|
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,zamont/core-setup,rakeshsinghranchi/core-setup,ericstj/core-setup,wtgodbe/core-setup,MichaelSimons/core-setup,zamont/core-setup,wtgodbe/core-setup,steveharter/core-setup,crummel/dotnet_core-setup,rakeshsinghranchi/core-setup,chcosta/core-setup,MichaelSimons/core-setup,wtgodbe/core-setup,crummel/dotnet_core-setup,crummel/dotnet_core-setup,steveharter/core-setup,zamont/core-setup,weshaggard/core-setup,weshaggard/core-setup,crummel/dotnet_core-setup,weshaggard/core-setup,steveharter/core-setup,steveharter/core-setup,chcosta/core-setup,weshaggard/core-setup,ericstj/core-setup,steveharter/core-setup,crummel/dotnet_core-setup,MichaelSimons/core-setup,MichaelSimons/core-setup,wtgodbe/core-setup,ericstj/core-setup,rakeshsinghranchi/core-setup,steveharter/core-setup,chcosta/core-setup,chcosta/core-setup,MichaelSimons/core-setup,rakeshsinghranchi/core-setup,ericstj/core-setup
|
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 -NonInteractive
|
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 ..
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" $*
)
where atom >nul 2>&1
if %ERRORLEVEL% EQU 0 (
doskey edit=atom $*
)
where code >nul 2>&1
if %ERRORLEVEL% EQU 0 (
doskey edit=code $*
)
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" $*
)
where atom >nul 2>&1
if %ERRORLEVEL% EQU 0 (
doskey edit=atom $*
)
where code >nul 2>&1
if %ERRORLEVEL% EQU 0 (
doskey edit=start /min code $*
)
rem Open functionality
doskey open=start $*
@echo on
|
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% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
|
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 new GeneticSharpConsoleApp -n ConsoleApp -o ConsoleApp
dotnet build ConsoleApp/ConsoleApp.csproj
echo GeneticSharpTspConsoleApp
dotnet new GeneticSharpTspConsoleApp -n TspConsoleApp -o TspConsoleApp
dotnet build TspConsoleApp/TspConsoleApp.csproj
echo GeneticSharpTspUnity3d
dotnet new GeneticSharpTspUnity3d -n TspUnity3d -o TspUnity3d
cd ..\..
|
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 new GeneticSharpConsoleApp -n ConsoleApp -o ConsoleApp
dotnet build ConsoleApp/ConsoleApp.csproj
echo GeneticSharpTspConsoleApp
dotnet new GeneticSharpTspConsoleApp -n TspConsoleApp -o TspConsoleApp
dotnet build TspConsoleApp/TspConsoleApp.csproj
echo GeneticSharpTspUnity3d
dotnet new GeneticSharpTspUnity3d -n TspUnity3d -o TspUnity3d
cd ..\..
|
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
|
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 RelWithDebInfo --target INSTALL
rem bin\Debug\LoadTest.exe --gtest_output=xml:test_details.Debug.xml
rem bin\RelWithDebInfo\LoadTest.exe --gtest_output=xml:test_details.RelWithDebInfo.xml
pause
|
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 RelWithDebInfo -- /p:RunCodeAnalysis=True
rem bin\Debug\LoadTest.exe --gtest_output=xml:test_details.Debug.xml
rem bin\RelWithDebInfo\LoadTest.exe --gtest_output=xml:test_details.RelWithDebInfo.xml
pause
|
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,godbyk/OSVR-Core,Armada651/OSVR-Core,Armada651/OSVR-Core,OSVR/OSVR-Core,feilen/OSVR-Core,Armada651/OSVR-Core,Armada651/OSVR-Core,feilen/OSVR-Core,leemichaelRazer/OSVR-Core,feilen/OSVR-Core,d235j/OSVR-Core,godbyk/OSVR-Core,feilen/OSVR-Core,OSVR/OSVR-Core,godbyk/OSVR-Core
|
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
REM Flatten dependency tree
cmd /c npm dedupe
REM Clean dependency tree
cmd /c npm prune
pause
|
@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 install
REM Flatten dependency tree
cmd /c npm dedupe
REM Clean dependency tree
cmd /c npm prune
pause
|
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,MicroWorldwide/SS13-TG-station,ShadowDeath6/-tg-station-yog-rebase,LLA-Gaming/LS13,Iamgoofball/-tg-station,Tokiko1/tgstation,HippieStation/HippieStation,JJRcop/-tg-station,paprka/-tg-station,Profakos/tgstation,tigercat2000/-tg-station,Zostroll/yogstation,erwgd/-tg-station,optimumtact/-tg-station,Thunder12345/-tg-station,TheSarkazmus/Faster-Than-Lizard-13,Incoming5643/-tg-station,utahclock/yogstation,Penguaro/tgstation,Cruix/-tg-station-yog-rebase,McBawbaggings/HippieStation,TalkingCactus/tgstation,AnturK/-tg-station,ShadowDeath6/-tg-station-yog-rebase,PKPenguin321/-tg-station,Super3222/yogstation,AnturK/-tg-station,Zostroll/yogstation,Valanthe500/Soteria-v3,nullquery/nullstation,AsV9/yogstation,coiax/-tg-station,kingofkosmos/-tg-station,neersighted/tgstation,Mervill/tgstation,Memendia/HippieStation,tgstation/tgstation,Aranclanos/-tg-station,Fayrik/-tg-station,kingofkosmos/-tg-station,Xhuis/AquaStation,Jordie0608/tgstation,Poojawa/tgstation-fork,Robustin/tgstation,F-OS/tgstation,Fox-McCloud/-tg-station,Valanthe500/Soteria-v3,Ultimate-Chimera/tgstation,OliBomby/yogstation-1,MicroWorldwide/SS13-TG-station,hornygranny/-tg-station,NicholasM10/-tg-station,Xhuis/tgfork,Ultimate-Chimera/tgstation,AnturK/-tg-station,Haevacht/tgstation,tigercat2000/-tg-station,infinitystation/-tg-station,nullquery/nullstation,LegendaryPoro/FTL13,GuyonBroadway/HippieStation,Cyberboss/tgstation,Groxic/yogstation,optimumtact/-tg-station,Memendia/HippieStation,Aloraydrel/-tg-station,athompson11/Soteria-v3,Maks750rus/-tg-station,A-t48/-tg-station,kevinz000/-tg-station,ike709/FTL13,ShizCalev/tgstation,ShizCalev/tgstation,riftstation/riftstation,JJRcop/tgstation,riftstation/riftstation,duncathan/-tg-station,balohmatevz/-tg-station,Super3222/yogstation,X-TheDark/yogstation,tgstation/-tg-station,Qwertyon666/Necro,Niknakflak/-tg-station,Niknakflak/-tg-station,AnturK/-tg-station,TalkingCactus/tgstation,YotaXP/-tg-station,Jordie0608/-tg-station,TehZombehz/-tg-station,Arianya/tgstation,Maks750rus/-tg-station,ike709/FTL13,Cruix/-tg-station,JJRcop/-tg-station,Kirill1243/-tg-station,TheRealGLH/-tg-station,lzimann/-tg-station,ike709/FTL13,Fayrik/-tg-station,Xhuis/tgfork,NicholasM10/-tg-station,PJB3005/tgstation,Expletive/tgstation,Jalleo/-tg-station,Osokorn/tgstation,Crexfu/tgstation,Cruix/-tg-station,Core0verload/-tg-station,ChangelingRain/-tg-station,GuyonBroadway/HippieStation,JStheguy/tgstation,ChayseRamsay/Soteria-v3,NicholasM10/-tg-station,4dplanner/tgstation,HippieStation/HippieStation,Robustin/tgstation,LanCartwright/-tg-station,ShizCalev/tgstation,Thunder12345/-tg-station,Cheridan/-tg-station,Anonus/-tg-station,JStheguy/tgstation,coiax/-tg-station,octareenroon91/-tg-station,CosmicScientist/-tg-station,Xhuis/tgfork,Yoshmaster/-tg-station,Buggy123/-tg-station,Jordie0608/tgstation,AdamElTablawy/yogstation-1,AnturK/-tg-station,phil235/-tg-station,JStheguy/tgstation,blockheads/-tg-station,Shadowlight213/-tg-station,lordpidey/-tg-station,nicbn/tgstation,GuyonBroadway/HippieStation,SamuelRowe/-tg-station,MrStonedOne/-tg-station,feemjmeem/-tg-station,ohnopigeons/tgstation,GunHog/-tg-station,Cruix/-tg-station-yog-rebase,posttk421/tgstation,coiax/-tg-station,CPTANT/-tg-station,tigercat2000/-tg-station,MicroWorldwide/SS13-TG-station,lordpidey/-tg-station,anconfuzedrock/tgstation,tgstation/tgstation,dannno/-tg-station,Aranclanos/-tg-station,TheSarkazmus/Faster-Than-Lizard-13,Y0SH1M4S73R/-tg-station,Xhuis/-tg-station,Arianya/tgstation,Buggy123/-tg-station,QualityVan/tgstation,Cheridan/-tg-station,Iamgoofball/-tg-station,Strathcona/-tg-station,Hollexian/FTL13,hornygranny/-tg-station,optimumtact/-tg-station,CrAzYPiLoT-SS13/FTL13,Xhuis/AquaStation,Ultimate-Chimera/tgstation,Incoming5643/-tg-station,phil235/-tg-station,Bawhoppen/-tg-station,4dplanner/tgstation,OBA-code/tgstation,TheOneForgotten/white,Kirill1243/-tg-station,coiax/-tg-station,yogstation13/-tg-station-yog-rebase,blockheads/-tg-station,Poojawa/tgstation-fork,Cyberboss/tgstation,QualityVan/tgstation,QualityVan/tgstation,Thunder12345/-tg-station,lzimann/-tg-station,nullquery/nullstation,XDTM/tgstation,Kraseo/-tg-station,ToGWtF/yogstation,NicholasM10/-tg-station,vcordie/tgstation,Poojawa/tgstation-fork,optimumtact/-tg-station,Groxic/tgstation,Crexfu/tgstation,GuyonBroadway/HippieStation,Super3222/yogstation,Jalleo/-tg-station,YotaXP/-tg-station,Jordie0608/-tg-station,tkdrg/-tg-station,Shadowlight213/-tg-station,ShizCalev/tgstation,Cyberboss/tgstation,4dplanner/tgstation,JJRcop/-tg-station,infinitystation/-tg-station,coiax/-tg-station,Dahka/-tg-station,kevinz000/-tg-station,TheRealGLH/-tg-station,Expletive/tgstation,ToGWtF/yogstation,Cruix/-tg-station,Arianya/tgstation,Y0SH1M4S73R/-tg-station,AuroranAI/FTL13,Tacolizard/tgstation,infinitystation/-tg-station,ShizCalev/tgstation,Cheridan/-tg-station,kevinz000/-tg-station,McBawbaggings/HippieStation,ChangelingRain/-tg-station,ZioZan/tgstation,utahclock/yogstation,ZioZan/tgstation,utahclock/yogstation,posttk421/tgstation,Niknakflak/-tg-station,Buggy123/-tg-station,OBA-code/tgstation,loqoman/tgstation,WJohn/-tg-station,greytide/greytide,Jalleo/-tg-station,bear1ake/-tg-station,anconfuzedrock/tgstation,chickenboy10/tgstation,securitycopper/-tg-station,neersighted/tgstation,HippieStationCode/HippieStation13,TheVekter/-tg-station,Xhuis/-tg-station,loqoman/tgstation,utahclock/yogstation,LanCartwright/-tg-station,QualityVan/tgstation,Bawhoppen/-tg-station,hornygranny/-tg-station,AdamElTablawy/yogstation-1,Qwertyon666/Necro,Nickvr628/FTL13,Stealthkibbler/FTL13,CPTANT/-tg-station,Dahka/-tg-station,TehZombehz/-tg-station,MrStonedOne/-tg-station,TheRealGLH/-tg-station,GunHog/-tg-station,Cruix/-tg-station-yog-rebase,ShadowDeath6/-tg-station-yog-rebase,WJohn/-tg-station,Jalleo/-tg-station,TehZombehz/-tg-station,QualityVan/tgstation,Xhuis/tgfork,Y0SH1M4S73R/-tg-station,Bawhoppen/-tg-station,Fox-McCloud/-tg-station,feemjmeem/-tg-station,Strathcona/-tg-station,Tokiko1/tgstation,ITBlackwood/FTL13,TehZombehz/-tg-station,Bawhoppen/-tg-station,Razharas/-tg-station,XDTM/tgstation,Jalleo/-tg-station,CPTANT/-tg-station,MrStonedOne/tgstation,chickenboy10/tgstation,nullquery/nullstation,Haevacht/tgstation,feemjmeem/-tg-station,Fayrik/-tg-station,feemjmeem/-tg-station,optimumtact/-tg-station,duncathan/-tg-station,Aranclanos/-tg-station,kevinz000/-tg-station,LanCartwright/-tg-station,octareenroon91/-tg-station,tkdrg/-tg-station,PKPenguin321/-tg-station,Zostroll/yogstation,Maks750rus/-tg-station,Dahka/-tg-station,Jalleo/-tg-station,Profakos/tgstation,HippieStationCode/HippieStation13,Valanthe500/Soteria-v3,Penguaro/tgstation,tkdrg/-tg-station,anconfuzedrock/tgstation,bear1ake/-tg-station,Cheridan/tgstation,checkraisefold/fulpstation,Hollexian/FTL13,nullstation/nullstation,Y0SH1M4S73R/-tg-station,SamuelRowe/-tg-station,Profakos/tgstation,riftstation/riftstation,Mervill/tgstation,paprka/-tg-station,AsV9/yogstation,octareenroon91/-tg-station,Buggy123/-tg-station,Arianya/tgstation,Nickvr628/FTL13,McBawbaggings/HippieStation,kingofkosmos/-tg-station,Cyberboss/tgstation,Razharas/-tg-station,OliBomby/yogstation-1,Nickvr628/FTL13,securitycopper/-tg-station,McBawbaggings/HippieStation,Cruix/-tg-station-yog-rebase,Super3222/yogstation,ChayseRamsay/Soteria-v3,Memendia/HippieStation13,tgstation/tgstation,Mervill/tgstation,Tacolizard/tgstation,Memendia/HippieStation,Expletive/tgstation,Stealthkibbler/FTL13,X-TheDark/yogstation,GuyonBroadway/HippieStation,xxalpha/-tg-station,CrAzYPiLoT-SS13/FTL13,TheDreamweaver/-tg-station,McBawbaggings/HippieStation,CosmicScientist/-tg-station,LegendaryPoro/FTL13,dannyy3566/FTL13,infinitystation/-tg-station,Mark9013100/tgstation-m9,Xhuis/tgfork,neersighted/tgstation,Arianya/tgstation,loqoman/tgstation,A-t48/-tg-station,CrAzYPiLoT-SS13/FTL13-1,Dahka/-tg-station,Xhuis/tgfork,Poojawa/tgstation-fork,MicroWorldwide/SS13-TG-station,TheDreamweaver/-tg-station,Fox-McCloud/-tg-station,lzimann/tgstation,nullstation/nullstation,ChangelingRain/-tg-station,Time-Green/-tg-station-yog-rebase,Fox-McCloud/-tg-station,Incoming5643/-tg-station,xxalpha/-tg-station,Cyberboss/tgstation,GuyonBroadway/HippieStation,infinitystation/-tg-station,vcordie/tgstation,Cheridan/-tg-station,balohmatevz/-tg-station,PJB3005/tgstation,JJRcop/-tg-station,lordpidey/-tg-station,yogstation13/-tg-station-yog-rebase,riftstation/riftstation,JJRcop/tgstation,Razharas/-tg-station,Jordie0608/tgstation,PKPenguin321/-tg-station,LanCartwright/-tg-station,Ricotez/-tg-station,MrStonedOne/tgstation,tgstation/tgstation,Xhuis/AquaStation,matskuman5/yogstation,CrAzYPiLoT-SS13/FTL13,Xhuis/AquaStation,chickenboy10/tgstation,infinitystation/-tg-station,ChangelingRain/-tg-station,Profakos/tgstation,Cruix/-tg-station-yog-rebase,loqoman/tgstation,dannno/-tg-station,AuroranAI/FTL13,McBawbaggings/HippieStation,vcordie/tgstation,Buggy123/-tg-station,securitycopper/-tg-station,checkraisefold/fulpstation,securitycopper/-tg-station,TheOneForgotten/white,feemjmeem/-tg-station,TheVekter/-tg-station,F-OS/tgstation,InsaneHyena/tgstation,GunHog/-tg-station,Robustin/tgstation,MrStonedOne/tgstation,Razharas/-tg-station,TehZombehz/-tg-station,tgstation/tgstation,ITBlackwood/FTL13,NicholasM10/-tg-station,athompson11/Soteria-v3,CosmicScientist/-tg-station,MrStonedOne/tgstation,dannno/-tg-station,neersighted/tgstation,Buggy123/-tg-station,loqoman/tgstation,blockheads/-tg-station,Incoming5643/-tg-station,ZioZan/tgstation,GuyonBroadway/HippieStation,ohnopigeons/tgstation,AsV9/yogstation,kingofkosmos/-tg-station,Profakos/tgstation,ChangelingRain/-tg-station,A-t48/-tg-station,Cheridan/tgstation,utahclock/yogstation,QualityVan/tgstation,TheSarkazmus/Faster-Than-Lizard-13,duncathan/-tg-station,kingofkosmos/-tg-station,Fox-McCloud/-tg-station,xxalpha/-tg-station,tigercat2000/-tg-station,lzimann/-tg-station,Aranclanos/-tg-station,F-OS/tgstation,Cruix/-tg-station,ShizCalev/tgstation,nullbear/-tg-station,lzimann/tgstation,Anonus/-tg-station,nicbn/tgstation,Groxic/tgstation,TheVekter/-tg-station,GunHog/-tg-station,neersighted/tgstation,matskuman5/yogstation,TalkingCactus/tgstation,ohnopigeons/tgstation,Memendia/HippieStation13,Groxic/tgstation,Yoshmaster/-tg-station,AndrewJacksonThe2nd/-tg-station,Penguaro/tgstation,Thunder12345/-tg-station,Robustin/tgstation,Tokiko1/tgstation,WJohn/-tg-station,nullstation/-tg-station,Robustin/tgstation,GunHog/-tg-station,Arianya/tgstation,Cyberboss/tgstation,phil235/-tg-station,Jordie0608/tgstation,Aranclanos/-tg-station,Shadowlight213/-tg-station,Buggy123/-tg-station,AnturK/-tg-station,Niknakflak/-tg-station,Nickvr628/FTL13,PKPenguin321/-tg-station,Time-Green/-tg-station-yog-rebase,greytide/greytide,Stealthkibbler/FTL13,XDTM/tgstation,AuroranAI/FTL13,Mark9013100/tgstation-m9,Haevacht/tgstation,LegendaryPoro/FTL13,MicroWorldwide/SS13-TG-station,kingofkosmos/-tg-station,Profakos/tgstation,tgstation/-tg-station,CrAzYPiLoT-SS13/FTL13-1,dannno/-tg-station,Memendia/HippieStation13,CrAzYPiLoT-SS13/FTL13-1,paprka/-tg-station,Maks750rus/-tg-station,WJohn/-tg-station,nullstation/nullstation,ike709/FTL13,F-OS/tgstation,Razharas/-tg-station,anconfuzedrock/tgstation,LLA-Gaming/LS13,Cruix/-tg-station,HippieStation/HippieStation,JJRcop/tgstation,X-TheDark/yogstation,xxalpha/-tg-station,Mark9013100/tgstation-m9,Groxic/yogstation,OliBomby/yogstation-1,AndrewJacksonThe2nd/-tg-station,Mervill/tgstation,SamuelRowe/-tg-station,XDTM/tgstation,Zorking/white,posttk421/tgstation,MrStonedOne/-tg-station,ChayseRamsay/Soteria-v3,optimumtact/-tg-station,PKPenguin321/-tg-station,nicbn/tgstation,CosmicScientist/-tg-station,JStheguy/tgstation,Tacolizard/tgstation,PJB3005/tgstation,posttk421/tgstation,lordpidey/-tg-station,TehZombehz/-tg-station,MrStonedOne/tgstation,Mark9013100/tgstation-m9,Iamgoofball/-tg-station,Tacolizard/tgstation,Kraseo/-tg-station,McBawbaggings/HippieStation,LLA-Gaming/LS13,OliBomby/yogstation-1,Shadowlight213/-tg-station,AndrewJacksonThe2nd/-tg-station,AsV9/yogstation,checkraisefold/fulpstation,feemjmeem/-tg-station,HippieStation/HippieStation,Anonus/-tg-station,anconfuzedrock/tgstation,octareenroon91/-tg-station,Zorking/white,4dplanner/tgstation,Kirill1243/-tg-station,Xhuis/tgfork,OBA-code/tgstation,Osokorn/tgstation,securitycopper/-tg-station,Cheridan/tgstation,Haevacht/tgstation,CosmicScientist/-tg-station,TheOneForgotten/white,Shadowlight213/-tg-station,MrStonedOne/tgstation,Robustin/tgstation,Niknakflak/-tg-station,ohnopigeons/tgstation,loqoman/tgstation,neersighted/tgstation,Groxic/yogstation,infinitystation/-tg-station,matskuman5/yogstation,Cruix/-tg-station,Tacolizard/tgstation,A-t48/-tg-station,TehZombehz/-tg-station,Profakos/tgstation,ShizCalev/tgstation,TheVekter/-tg-station,Hollexian/FTL13,Zostroll/yogstation,Valanthe500/Soteria-v3,PKPenguin321/-tg-station,JStheguy/tgstation,Strathcona/-tg-station,QualityVan/tgstation,Memendia/HippieStation,CPTANT/-tg-station,MrStonedOne/tgstation,ChangelingRain/-tg-station,Ricotez/-tg-station,XDTM/tgstation,bear1ake/-tg-station,octareenroon91/-tg-station,Incoming5643/-tg-station,lordpidey/-tg-station,Expletive/tgstation,LLA-Gaming/LS13,Zorking/white,Y0SH1M4S73R/-tg-station,Yoshmaster/-tg-station,tgstation/tgstation,Y0SH1M4S73R/-tg-station,ChangelingRain/-tg-station,Cruix/-tg-station-yog-rebase,kingofkosmos/-tg-station,matskuman5/yogstation,Bawhoppen/-tg-station,athompson11/Soteria-v3,lzimann/-tg-station,Bawhoppen/-tg-station,Iamgoofball/-tg-station,McBawbaggings/HippieStation,kevinz000/-tg-station,HippieStation/HippieStation,Shadowlight213/-tg-station,CrAzYPiLoT-SS13/FTL13,Anonus/-tg-station,Aloraydrel/-tg-station,Memendia/HippieStation,greytide/greytide,Memendia/HippieStation,paprka/-tg-station,MrStonedOne/-tg-station,Xhuis/-tg-station,Fox-McCloud/-tg-station,AdamElTablawy/yogstation-1,kyrahabattoir/-tg-station,AnturK/-tg-station,Cruix/-tg-station-yog-rebase,Time-Green/-tg-station-yog-rebase,loqoman/tgstation,erwgd/-tg-station,SamuelRowe/-tg-station,nullstation/-tg-station,TheSarkazmus/Faster-Than-Lizard-13,kevinz000/-tg-station,erwgd/-tg-station,Bawhoppen/-tg-station,nicbn/tgstation,TheOneForgotten/white,CPTANT/-tg-station,checkraisefold/fulpstation,Mark9013100/tgstation-m9,nullstation/-tg-station,nicbn/tgstation,bear1ake/-tg-station,CPTANT/-tg-station,NicholasM10/-tg-station,Mark9013100/tgstation-m9,Thunder12345/-tg-station,balohmatevz/-tg-station,hornygranny/-tg-station,HippieStation/HippieStation,phil235/-tg-station,optimumtact/-tg-station,paprka/-tg-station,athompson11/Soteria-v3,Core0verload/-tg-station,InsaneHyena/tgstation,ITBlackwood/FTL13,paprka/-tg-station,Jordie0608/tgstation,loqoman/tgstation,xxalpha/-tg-station,nullbear/-tg-station,ITBlackwood/FTL13,Poojawa/tgstation-fork,kevinz000/-tg-station,Mark9013100/tgstation-m9,kevinz000/-tg-station,Razharas/-tg-station,Xhuis/-tg-station,ChayseRamsay/Soteria-v3,Jordie0608/-tg-station,MicroWorldwide/SS13-TG-station,ShadowDeath6/-tg-station-yog-rebase,Crexfu/tgstation,nicbn/tgstation,riftstation/riftstation,TalkingCactus/tgstation,Xhuis/tgfork,yogstation13/-tg-station-yog-rebase,TehZombehz/-tg-station,JStheguy/tgstation,securitycopper/-tg-station,LegendaryPoro/FTL13,X-TheDark/yogstation,kyrahabattoir/-tg-station,utahclock/yogstation,Qwertyon666/Necro,feemjmeem/-tg-station,WJohn/-tg-station,JJRcop/tgstation,Kraseo/-tg-station,Poojawa/tgstation-fork,utahclock/yogstation,Cyberboss/tgstation,tgstation/-tg-station,xxalpha/-tg-station,Jalleo/-tg-station,nullbear/-tg-station,CPTANT/-tg-station,XDTM/tgstation,Shadowlight213/-tg-station,feemjmeem/-tg-station,Ricotez/-tg-station,CosmicScientist/-tg-station,Incoming5643/-tg-station,utahclock/yogstation,AdamElTablawy/yogstation-1,Time-Green/-tg-station-yog-rebase,Poojawa/tgstation-fork,dannyy3566/FTL13,Groxic/tgstation,Aranclanos/-tg-station,WJohn/-tg-station,Aloraydrel/-tg-station,CosmicScientist/-tg-station,Osokorn/tgstation,Strathcona/-tg-station,Yoshmaster/-tg-station,Niknakflak/-tg-station,kyrahabattoir/-tg-station,paprka/-tg-station,TheRealGLH/-tg-station,MicroWorldwide/SS13-TG-station,Razharas/-tg-station,Robustin/tgstation,PKPenguin321/-tg-station,kyrahabattoir/-tg-station,Penguaro/tgstation,blockheads/-tg-station,Tokiko1/tgstation,dannyy3566/FTL13,Ricotez/-tg-station,chickenboy10/tgstation,paprka/-tg-station,tgstation/-tg-station,Qwertyon666/Necro,Core0verload/-tg-station,duncathan/-tg-station,Aranclanos/-tg-station,Jordie0608/tgstation,Cheridan/tgstation,F-OS/tgstation,Jordie0608/tgstation,Jordie0608/tgstation,Cruix/-tg-station-yog-rebase,YotaXP/-tg-station,Incoming5643/-tg-station,JStheguy/tgstation,4dplanner/tgstation,coiax/-tg-station,Thunder12345/-tg-station,Y0SH1M4S73R/-tg-station,GuyonBroadway/HippieStation,4dplanner/tgstation,JJRcop/tgstation,Buggy123/-tg-station,Jalleo/-tg-station,greytide/greytide,OBA-code/tgstation,Cruix/-tg-station,ToGWtF/yogstation,Aloraydrel/-tg-station,Shadowlight213/-tg-station,4dplanner/tgstation,anconfuzedrock/tgstation,TheVekter/-tg-station,Tacolizard/tgstation,Ultimate-Chimera/tgstation,Groxic/yogstation,GunHog/-tg-station,Thunder12345/-tg-station,MrStonedOne/tgstation,TheDreamweaver/-tg-station,MicroWorldwide/SS13-TG-station,ToGWtF/yogstation,Core0verload/-tg-station,nullstation/nullstation,PJB3005/tgstation,F-OS/tgstation,Fayrik/-tg-station,tgstation/tgstation,AuroranAI/FTL13,Tacolizard/tgstation,securitycopper/-tg-station,Memendia/HippieStation13,TheDreamweaver/-tg-station,infinitystation/-tg-station,Razharas/-tg-station,F-OS/tgstation,PKPenguin321/-tg-station,anconfuzedrock/tgstation,HippieStationCode/HippieStation13,Niknakflak/-tg-station,Bawhoppen/-tg-station,riftstation/riftstation,InsaneHyena/tgstation,xxalpha/-tg-station,WJohn/-tg-station,Hollexian/FTL13,riftstation/riftstation,yogstation13/-tg-station-yog-rebase,Incoming5643/-tg-station,NicholasM10/-tg-station,4dplanner/tgstation,JJRcop/tgstation,nullbear/-tg-station,securitycopper/-tg-station,Cruix/-tg-station,Stealthkibbler/FTL13,TheVekter/-tg-station,xxalpha/-tg-station,tgstation/tgstation,AndrewJacksonThe2nd/-tg-station,XDTM/tgstation,Kraseo/-tg-station,nullstation/-tg-station,ChangelingRain/-tg-station,InsaneHyena/tgstation,HippieStationCode/HippieStation13,Robustin/tgstation,Aranclanos/-tg-station,tkdrg/-tg-station,balohmatevz/-tg-station,Jordie0608/-tg-station,CPTANT/-tg-station,Memendia/HippieStation,CosmicScientist/-tg-station,lordpidey/-tg-station,neersighted/tgstation,nicbn/tgstation,YotaXP/-tg-station,Arianya/tgstation,Crexfu/tgstation,HippieStation/HippieStation,Y0SH1M4S73R/-tg-station,lzimann/tgstation,GunHog/-tg-station,lordpidey/-tg-station,F-OS/tgstation
|
ef0b5e7f2e3498cfae6f1c6a035cc44bac1b03ad
|
copy-files.cmd
|
copy-files.cmd
|
robocopy . ..\..\..\..\..\installer\windows\x64\packages\com.kryvosproject.kryvos\data\ /E
robocopy . Kryvos\ /E
|
robocopy . ..\..\..\..\..\installer\windows\x64\packages\com.kryvosproject.kryvos\data\ /E
robocopy . Kryvos\ /E
exit 0
|
Append exit 0 for AppVeyor copy script
|
Append exit 0 for AppVeyor copy script
|
Batchfile
|
mit
|
adolby/Kryvos,adolby/Kryvos,adolby/Kryvos
|
a844c8532e5c8c6bd155de81c24cba69577ba00b
|
ebtask_example.bat
|
ebtask_example.bat
|
set PYTHON=C:\Python27\python.exe
set BASE_DIR=[Your email-backup checkout]
set OUTPUT_DIR=[Directory to output archive]
set EMAIL=[Email address]
set PASSWORD=[Password (application specific password for gmail accounts)]
set IMAP=[IMAP server address]
%python% %BASE_DIR%\ebackup.py -e %EMAIL% -p %PASSWORD% -i %IMAP% -o %OUTPUT_DIR%
%python% %BASE_DIR%\ebexporter.py -i %OUTPUT_DIR%\%EMAIL% -o %OUTPUT_DIR%\Archive.mbox
|
set PYTHON=C:\Python27\python.exe
set BASE_DIR=[Your email-backup checkout]
set OUTPUT_DIR=[Directory to output archive]
set EMAIL=[Email address]
set PASSWORD=[Password (application specific password for gmail accounts)]
set IMAP=[IMAP server address]
%python% %BASE_DIR%\ebackup.py -e %EMAIL% -p %PASSWORD% -i %IMAP% -o %OUTPUT_DIR%
%python% %BASE_DIR%\ebexporter.py -i %OUTPUT_DIR%\%EMAIL% -o %OUTPUT_DIR%\%EMAIL%\Archive.mbox
|
Archive was being stored in wrong directory.
|
Archive was being stored in wrong directory.
|
Batchfile
|
mit
|
thegoldenmule/email-backup,thegoldenmule/email-backup
|
1aff0e254d3a3b109b8e19caee702dc0912d8532
|
Build/nuget-restore.bat
|
Build/nuget-restore.bat
|
@echo off
SET ROOT=%~dp0..
SET NuGetExe=%ROOT%\Tools\NuGet.exe
SET SolutionFile=%ROOT%\UnitsNet.sln
%NuGetExe% restore %SolutionFile%
|
@echo off
SET ROOT=%~dp0..
SET NuGetExe=%ROOT%\Tools\NuGet.exe
SET SolutionFile=%ROOT%\UnitsNet.2015.sln
%NuGetExe% restore %SolutionFile%
|
Update references to rename solution file
|
Update references to rename solution file
|
Batchfile
|
mit
|
anjdreas/UnitsNet,Tirael/UnitsNet,BrandonLWhite/UnitsNet,BrandonLWhite/UnitsNet,anjdreas/UnitsNet,BoGrevyDynatest/UnitsNet,neutmute/UnitsNet
|
e86e01d15df619f0cc07c3160ad92a5018fae730
|
server/script-templates/jruby.bat
|
server/script-templates/jruby.bat
|
@echo off
<% print environment.collect { entry -> """set ${entry.key}=\"${entry.value}\"""" }.join("\n") %>
rem add jruby and rubygem binstubs to PATH
set PATH="${additionalJRubyPaths.join(File.pathSeparator)};%PATH%"
"${javaExecutable}" ^
<% print jvmArgs.collect { entry -> $/ "${entry}"/$ }.join(" ^\n") %> ^
<% print systemProperties.collect { entry -> $/ "-D${entry}"/$ }.join(" ^\n") %> ^
-cp ^
"${jrubyJar};${classpath.join(';')}" ^
${mainClassName} ^
%*
|
@echo off
<% print environment.collect { entry -> """set \"${entry.key}=${entry.value}\"""" }.join("\n") %>
rem add jruby and rubygem binstubs to PATH
set "PATH=${additionalJRubyPaths.join(File.pathSeparator)};%PATH%"
"${javaExecutable}" ^
<% print jvmArgs.collect { entry -> $/ "${entry}"/$ }.join(" ^\n") %> ^
<% print systemProperties.collect { entry -> $/ "-D${entry}"/$ }.join(" ^\n") %> ^
-cp ^
"${jrubyJar};${classpath.join(';')}" ^
${mainClassName} ^
%*
|
Fix env var quoting on Windows
|
Fix env var quoting on Windows
|
Batchfile
|
apache-2.0
|
ketan/gocd,Skarlso/gocd,gocd/gocd,Skarlso/gocd,ketan/gocd,ketan/gocd,ketan/gocd,gocd/gocd,gocd/gocd,gocd/gocd,Skarlso/gocd,Skarlso/gocd,gocd/gocd,Skarlso/gocd,ketan/gocd,Skarlso/gocd,gocd/gocd,ketan/gocd
|
fc842d4727f5d1b2a58cbf1e15a5fb7a84f4ab4c
|
scripts/compile-dotnet-assemblies.bat
|
scripts/compile-dotnet-assemblies.bat
|
::http://support.microsoft.com/kb/2570538
::http://robrelyea.wordpress.com/2007/07/13/may-be-helpful-ngen-exe-executequeueditems/
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe executequeueditems
exit /b
:64BIT
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework64\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe executequeueditems
%windir%\microsoft.net\framework64\v4.0.30319\ngen.exe executequeueditems
|
::http://support.microsoft.com/kb/2570538
::http://robrelyea.wordpress.com/2007/07/13/may-be-helpful-ngen-exe-executequeueditems/
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto 64BIT
if exist "%windir%\microsoft.net\framework\v4.0.30319\ngen.exe" (
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe executequeueditems
)
exit /b
:64BIT
if exist "%windir%\microsoft.net\framework\v4.0.30319\ngen.exe" (
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework64\v4.0.30319\ngen.exe update /force /queue
%windir%\microsoft.net\framework\v4.0.30319\ngen.exe executequeueditems
%windir%\microsoft.net\framework64\v4.0.30319\ngen.exe executequeueditems
)
|
Check whether ngen.exe exists and execute only if it exists. Some versions of Windows 7 (e.g. without updates) do not include .NET Framework 4.0 by default.
|
Check whether ngen.exe exists and execute only if it exists. Some versions of Windows 7 (e.g. without updates) do not include .NET Framework 4.0 by default.
|
Batchfile
|
mit
|
TaylorMonacelli/packer-windows,TheBigBear/packer-windows-joefitzgerald,floradu88/packer-windows,tsew/packer-windows,joefitzgerald/packer-windows,bigwave/packer-windows
|
546f3c77f9ffeaf5876568442ab914edbb9dca61
|
src/FolderDiffPowerShell/FolderDiff.bat
|
src/FolderDiffPowerShell/FolderDiff.bat
|
@ECHO OFF
SET CurrentPath=%~dp0
SET ReferenceFolder=%1
SET DifferenceFolder=%2
SET SupportLongFilenames=%3
IF [%3]==[] SET SupportLongFilenames=$False
ECHO.
PowerShell.exe -NoProfile -ExecutionPolicy ByPass -Command "%CurrentPath%FolderDiff.ps1 %ReferenceFolder% %DifferenceFolder% %SupportLongFilenames% | ForEach { $_.FullName }"
|
@ECHO OFF
SET CurrentPath=%~dp0
SET ReferenceFolder=%1
SET DifferenceFolder=%2
SET SupportLongFilenames=%3
IF [%3]==[] SET SupportLongFilenames=$False
ECHO.
PowerShell.exe ^
-NoProfile ^
-ExecutionPolicy ByPass ^
-Command ^
"%CurrentPath%FolderDiff.ps1 %ReferenceFolder% %DifferenceFolder% %SupportLongFilenames% | ForEach { $_.FullName }"
|
Make file more readable by shortening lines.
|
Make file more readable by shortening lines.
|
Batchfile
|
bsd-3-clause
|
sietsevdschoot/FolderDiff
|
e83e66c6848e85479d6afeabaa58dfc601622e20
|
contrib/packaging-python/conda/bld.bat
|
contrib/packaging-python/conda/bld.bat
|
REM mkdir build
REM cd build
REM Remove dot from PY_VER for use in library name
set MY_PY_VER=%PY_VER:.=%
REM Configure step
cmake -G "%CMAKE_GENERATOR%" ^
-DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^
-DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ^
--config "%CONFIGURATION%" ^
-H"C:\projects\chrono" ^
-DENABLE_MODULE_IRRLICHT=ON ^
-DENABLE_MODULE_FEA=OFF ^
-DENABLE_MODULE_POSTPROCESS=OFF ^
-DENABLE_MODULE_PYTHON=ON ^
-DBUILD_DEMOS=OFF ^
-DBUILD_TESTING=OFF ^
-DCH_IRRLICHTDIR="C:\irrlicht-1.8.2" ^
-DCH_IRRLICHTLIB="C:\irrlicht-1.8.2\lib\Win64-visualStudio\Irrlicht.lib" ^
..
if errorlevel 1 exit 1
REM Build step
cmake --build "C:\projects\build" --config "%CONFIGURATION%"
if errorlevel 1 exit 1
REM Install step
REM ninja install
REM if errorlevel 1 exit 1
|
REM To avoid building in work/ alongside the source. Rather build in work/build/
mkdir build
cd build
REM Remove dot from PY_VER for use in library name
set MY_PY_VER=%PY_VER:.=%
REM Configure step
cmake -G "%CMAKE_GENERATOR%" ^
-DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^
-DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^
-DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ^
--config "%CONFIGURATION%" ^
-DENABLE_MODULE_IRRLICHT=ON ^
-DENABLE_MODULE_FEA=OFF ^
-DENABLE_MODULE_POSTPROCESS=OFF ^
-DENABLE_MODULE_PYTHON=ON ^
-DBUILD_DEMOS=OFF ^
-DBUILD_TESTING=OFF ^
-DCH_IRRLICHTDIR="C:\irrlicht-1.8.2" ^
-DCH_IRRLICHTLIB="C:\irrlicht-1.8.2\lib\Win64-visualStudio\Irrlicht.lib" ^
..
if errorlevel 1 exit 1
REM Build step
cmake --build . --config "%CONFIGURATION%"
if errorlevel 1 exit 1
REM Install step
REM ninja install
REM if errorlevel 1 exit 1
|
Change CI build dir in appeyor
|
Change CI build dir in appeyor
|
Batchfile
|
bsd-3-clause
|
projectchrono/chrono,rserban/chrono,projectchrono/chrono,projectchrono/chrono,rserban/chrono,dariomangoni/chrono,Milad-Rakhsha/chrono,armanpazouki/chrono,dariomangoni/chrono,armanpazouki/chrono,dariomangoni/chrono,dariomangoni/chrono,rserban/chrono,armanpazouki/chrono,projectchrono/chrono,dariomangoni/chrono,projectchrono/chrono,rserban/chrono,rserban/chrono,dariomangoni/chrono,armanpazouki/chrono,rserban/chrono,Milad-Rakhsha/chrono,rserban/chrono,Milad-Rakhsha/chrono,armanpazouki/chrono,armanpazouki/chrono,Milad-Rakhsha/chrono,Milad-Rakhsha/chrono,projectchrono/chrono,Milad-Rakhsha/chrono
|
61c0c7e372befa2d724081bc23fd540d892b459d
|
ci/tasks/cats-windows.bat
|
ci/tasks/cats-windows.bat
|
SET GOPATH=%CD%\cf-release-repo
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%CD%\cf-release-repo\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\tasks\create-cats-config.bat
SET CONFIG=%CD%\config.json
go get -v github.com/onsi/ginkgo/ginkgo
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
dir ..
popd
go get -v github.com/onsi/ginkgo/ginkgo
cd %GATSPATH%
ginkgo.exe -r -slowSpecThreshold=120 -skipPackage="logging,services,v3,routing_api,routing,backend_compatibility,ssh" -skip="NO_DEA_SUPPORT|go makes the app reachable via its bound route|SSO|takes effect after a restart, not requiring a push|doesn't die when printing 32MB|exercises basic loggregator|firehose data|Downloads the droplet for the app" -nodes=2
|
SET GOPATH=%CD%\cf-release-repo
SET GATSPATH=%GOPATH%\src\github.com\cloudfoundry\cf-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%CD%\cf-release-repo\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\tasks\create-cats-config.bat
SET CONFIG=%CD%\config.json
go get -v github.com/onsi/ginkgo/ginkgo
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
dir ..
popd
go get -v github.com/onsi/ginkgo/ginkgo
cd %GATSPATH%
ginkgo.exe -r -slowSpecThreshold=120 -skipPackage="logging,services,v3,routing_api,routing,backend_compatibility,ssh" -skip="NO_DEA_SUPPORT|go makes the app reachable via its bound route|SSO|takes effect after a restart, not requiring a push|doesn't die when printing 32MB|exercises basic loggregator|firehose data|Downloads the droplet for the app" -nodes=2
|
Revert "swap GnuWin32 with 7zip, cuz sourceforge is broke"
|
Revert "swap GnuWin32 with 7zip, cuz sourceforge is broke"
This reverts commit 42237d6c20c650f9803acbd496df30d8d9e0b8d6.
|
Batchfile
|
apache-2.0
|
cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli
|
c84b42177b331c4e2c5c04e07c0167b0db7eb6bb
|
Containerizer/make.bat
|
Containerizer/make.bat
|
:: msbuild must be in path
SET PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework64\v4.0.30319
where msbuild
if errorLevel 1 ( echo "msbuild was not found on PATH" && exit /b 1 )
git submodule update --init --recursive
cd IronFrame
call build.bat || exit /b 1
cd ..
rmdir /S /Q packages
bin\nuget restore || exit /b 1
MSBuild Containerizer\Containerizer.csproj /t:Rebuild /p:Configuration=Release || exit /b 1
MSBuild Containerizer.Tests\Containerizer.Tests.csproj /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Containerizer.Tests\bin\Release\Containerizer.Tests.dll || exit /b 1
|
:: msbuild must be in path
SET PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework64\v4.0.30319
where msbuild
if errorLevel 1 ( echo "msbuild was not found on PATH" && exit /b 1 )
git submodule update --init --recursive
cd IronFrame
call build.bat build || exit /b 1
cd ..
rmdir /S /Q packages
bin\nuget restore || exit /b 1
MSBuild Containerizer\Containerizer.csproj /t:Rebuild /p:Configuration=Release || exit /b 1
MSBuild Containerizer.Tests\Containerizer.Tests.csproj /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Containerizer.Tests\bin\Release\Containerizer.Tests.dll || exit /b 1
|
Build Ironframe in DiegoWindowsMSI on appveyor instead of testing it (currently freezes)
|
Build Ironframe in DiegoWindowsMSI on appveyor instead of testing it (currently freezes)
See #93622840
|
Batchfile
|
apache-2.0
|
cloudfoundry/garden-windows,cloudfoundry/garden-windows,cloudfoundry-incubator/garden-windows,stefanschneider/garden-windows,stefanschneider/garden-windows,cloudfoundry/garden-windows,cloudfoundry-incubator/garden-windows,cloudfoundry-incubator/garden-windows,stefanschneider/garden-windows
|
5e815e8686b630a0078da7af4b010c61cb2005f0
|
syzygy/run_all_tests.bat
|
syzygy/run_all_tests.bat
|
@echo off
:: Copyright 2009 Google Inc. All Rights Reserved.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
set PYTHON="%~dp0..\third_party\python_26\python.exe"
set SCRIPT="%~dp0tests\run_all_tests.py"
set INTERNAL_TESTS="%~dp0internal\run_all_tests.bat"
%PYTHON% %SCRIPT% %*
IF EXIST %INTERNAL_TESTS% (
%INTERNAL_TESTS% %*
)
|
@echo off
:: Copyright 2009 Google Inc. All Rights Reserved.
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
set SYZYGY_PYTHON="%~dp0..\third_party\python_26\python.exe"
set SYZYGY_SCRIPT="%~dp0tests\run_all_tests.py"
set SYZYGY_INTERNAL_TESTS="%~dp0internal\run_all_tests.bat"
%SYZYGY_PYTHON% %SYZYGY_SCRIPT% %*
IF EXIST %SYZYGY_INTERNAL_TESTS% (
%SYZYGY_INTERNAL_TESTS% %*
)
set SYZYGY_PYTHON=
set SYZYGY_SCRIPT=
set SYZYGY_INTERNAL_TESTS=
|
Fix run_all_test script to avoid git-cl variable clashes.
|
Fix run_all_test script to avoid git-cl variable clashes.
A recent update to git-cl seems to use the same variable
SCRIPT, etc...
After running run_all_tests, the git-cl script won't work until you unset
the variables or close your shell.
Unsetting the variable is enough, but it's safer to use a new name in
case the script crashes.
[email protected], chrisha
BUG=
Review URL: https://codereview.appspot.com/74770043
git-svn-id: db59699583a60be9a535cd09cdc9132301867226@2072 15e8cca8-e42c-11de-a347-f34a4f72eb7d
|
Batchfile
|
apache-2.0
|
Eloston/syzygy,google/syzygy,google/syzygy,wangming28/syzygy,supriyantomaftuh/syzygy,supriyantomaftuh/syzygy,pombreda/syzygy,ericmckean/syzygy,ericmckean/syzygy,pombreda/syzygy,wangming28/syzygy,pombreda/syzygy,wangming28/syzygy,Eloston/syzygy,sebmarchand/syzygy,wangming28/syzygy,supriyantomaftuh/syzygy,sebmarchand/syzygy,pombreda/syzygy,ericmckean/syzygy,pombreda/syzygy,ericmckean/syzygy,supriyantomaftuh/syzygy,ericmckean/syzygy,sebmarchand/syzygy,sebmarchand/syzygy,google/syzygy,google/syzygy,sebmarchand/syzygy
|
5b02ad156fefdb7a937b9ed1a76986e6c278056b
|
doc/screenplay/demo-3-bach.bat
|
doc/screenplay/demo-3-bach.bat
|
@echo off
cls
echo.
echo BEGIN OF DEMO 3: Bach.java
pause > nul
if exist demo rmdir /q/s demo
mkdir demo
cd demo
mkdir src\demo
echo ______
echo Step 1: Declare demo module: src\demo\module-info.java
pause > nul
(
echo module demo {}
)>"src\demo\module-info.java"
echo.
type src\demo\module-info.java
pause > nul
echo ______
echo Step 2: NOOP -- no local build file is needed
pause > nul
echo ______
echo Step 3: Show tree of source files
pause > nul
echo.
tree /f . | findstr /v Volume | findstr /v :
pause > nul
echo ______
echo Step 4: Build
pause > nul
@echo on
jshell --show-version --execution local https://bit.ly/bach-build
@echo off
pause > nul
echo ______
echo Step 5: Show tree of source and binary files
pause > nul
echo.
tree /f . | findstr /v Volume | findstr /v :
pause > nul
echo ______
echo Step 6: Describe demo module
pause > nul
echo.
jar --describe-module --file .bach\out\main\modules\demo-0.jar
pause > nul
cd ..
echo.
echo END OF DEMO
echo.
|
@echo off
cls
echo.
echo BEGIN OF DEMO 3: Bach.java
pause > nul
if exist demo rmdir /q/s demo
mkdir demo
cd demo
mkdir src\demo
echo ______
echo Step 1: Declare demo module: src\demo\module-info.java
pause > nul
(
echo module demo {}
)>"src\demo\module-info.java"
echo.
type src\demo\module-info.java
pause > nul
echo ______
echo Step 2: NOOP -- no local build file is needed
pause > nul
echo ______
echo Step 3: Show tree of source files
pause > nul
echo.
tree /f . | findstr /v Volume | findstr /v :
pause > nul
echo ______
echo Step 4: Build
pause > nul
@echo on
jshell --show-version https://bit.ly/bach-build
@echo off
pause > nul
echo ______
echo Step 5: Show tree of source and binary files
pause > nul
echo.
tree /f . | findstr /v Volume | findstr /v :
pause > nul
echo ______
echo Step 6: Describe demo module
pause > nul
echo.
jar --describe-module --file .bach\modules\demo.jar
pause > nul
cd ..
echo.
echo END OF DEMO
echo.
|
Update arguments used in screenplay demo 3
|
Update arguments used in screenplay demo 3
|
Batchfile
|
mit
|
sormuras/bach,sormuras/bach
|
fad834821987c1754b62ae6b571ab4e8f568599c
|
Tools/AppVeyor/Install.cmd
|
Tools/AppVeyor/Install.cmd
|
@echo off
if not exist "C:\Program Files (x86)\gs" powershell -ExecutionPolicy Unrestricted ..\Scripts\AppVeyor\InstallGhostscript.ps1
if %errorlevel% neq 0 exit /b %errorlevel%
set LIBDIR=C:\Magick.NET.libs
if exist %LIBDIR% goto done
echo Downloading .lib files
appveyor DownloadFile https://www.dropbox.com/sh/5m3zllq81n4eyhm/AACQFGl4PKi9xnd15EbU5S1Ia?dl=1
echo Extracting .lib files
7z x -o%LIBDIR% AACQFGl4PKi9xnd15EbU5S1Ia
if %errorlevel% neq 0 exit /b %errorlevel%
dotnet restore ..\..\Tests\Magick.NET.Tests\Magick.NET.Tests.csproj
:done
|
@echo off
if not exist "C:\Program Files (x86)\gs" powershell -ExecutionPolicy Unrestricted ..\Scripts\AppVeyor\InstallGhostscript.ps1
if %errorlevel% neq 0 exit /b %errorlevel%
set LIBDIR=C:\Magick.NET.libs
if exist %LIBDIR% goto done
echo Downloading .lib files
appveyor DownloadFile https://www.dropbox.com/sh/5m3zllq81n4eyhm/AACQFGl4PKi9xnd15EbU5S1Ia?dl=1
echo Extracting .lib files
7z x -o%LIBDIR% AACQFGl4PKi9xnd15EbU5S1Ia
if %errorlevel% neq 0 exit /b %errorlevel%
:done
|
Revert dotnet restore because it did not fix the AnyCPU build.
|
Revert dotnet restore because it did not fix the AnyCPU build.
|
Batchfile
|
apache-2.0
|
dlemstra/Magick.NET,dlemstra/Magick.NET
|
6c3e7ce76cf72aa2985ac839fdc48890b6852679
|
tools/release_win.bat
|
tools/release_win.bat
|
rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
rmdir /q /s dist\*.*
del /s /q dist\*.*
rem ****** Compile our executable and core zipfile
python setup.py py2exe
rem ****** Remove extras from core zipfile
cd dist
7z d namebench.zip tcl\*.*
rmdir /s /q tcl\tcl8.5\tzdata tcl\tk8.5\demos
del tcl\tk8.5\images\*.eps
rem ****** Final assembly of zipfile
copy ..\README.txt .
7z a namebench_for_Windows.zip -r * >nul
rem ****** Test assembled zipfile
namebench -x -O 8.8.8.8 -q5 -o test.html
start test.html
cd ..
|
rem Tool to assemble Windows builds
rem Requirements are 7-zip, py2exe, and FreeExtractor
PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
rem ****** Clean out the old junk
del /s /f /q dist
rem ****** Compile our executable and core zipfile
python setup.py py2exe
rem ****** Remove extras from core zipfile
cd dist
7z d namebench.zip tcl\*.*
rmdir /s /q tcl\tcl8.5\tzdata tcl\tk8.5\demos
del tcl\tk8.5\images\*.eps
rem ****** Final assembly of zipfile
copy ..\README.txt .
7z a namebench_for_Windows.zip -r * >nul
rem ****** Test assembled zipfile
namebench -x -O 8.8.8.8 -q5 -o test.html
start test.html
cd ..
|
Remove wildcard from del statement
|
Remove wildcard from del statement
|
Batchfile
|
apache-2.0
|
rogers0/namebench,google/namebench,google/namebench,protron/namebench,google/namebench
|
6ef57d4462f0b09ed8d0f92411703f2c7b5a2f74
|
recipes/curl/bld.bat
|
recipes/curl/bld.bat
|
cd winbuild
if %ARCH% == 32 (
set ARCH_STRING=x86
) else (
set ARCH_STRING=x64
)
REM This is implicitly using WinSSL. See Makefile.vc for more info.
nmake /f Makefile.vc mode=dll VC=%VS_MAJOR:"=% WITH_DEVEL=%LIBRARY_PREFIX% ^
WITH_ZLIB=dll DEBUG=no ENABLE_IDN=no MACHINE=%ARCH_STRING%
robocopy ..\builds\libcurl-vc%VS_MAJOR:"=%-%ARCH_STRING%-release-dll-zlib-dll-ipv6-sspi-winssl\ %LIBRARY_PREFIX% *.* /E
if %ERRORLEVEL% GEQ 8 exit 1
exit /B
|
cd winbuild
if %ARCH% == 32 (
set ARCH_STRING=x86
) else (
set ARCH_STRING=x64
)
REM This is implicitly using WinSSL. See Makefile.vc for more info.
nmake /f Makefile.vc mode=dll VC=%VS_MAJOR:"=% WITH_DEVEL=%LIBRARY_PREFIX% ^
WITH_ZLIB=dll DEBUG=no ENABLE_IDN=no MACHINE=%ARCH_STRING%
if %ERRORLEVEL% 1 exit 1
robocopy ..\builds\libcurl-vc%VS_MAJOR:"=%-%ARCH_STRING%-release-dll-zlib-dll-ipv6-sspi-winssl\ %LIBRARY_PREFIX% *.* /E
if %ERRORLEVEL% GEQ 8 exit 1
exit 0
|
Address exit codes on Windows.
|
curl: Address exit codes on Windows.
|
Batchfile
|
bsd-3-clause
|
hadim/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,arokem/staged-recipes,benvandyke/staged-recipes,jcb91/staged-recipes,rvalieris/staged-recipes,mcs07/staged-recipes,planetarypy/staged-recipes,atedstone/staged-recipes,larray-project/staged-recipes,pstjohn/staged-recipes,jjhelmus/staged-recipes,petrushy/staged-recipes,blowekamp/staged-recipes,jerowe/staged-recipes,richardotis/staged-recipes,birdsarah/staged-recipes,NOAA-ORR-ERD/staged-recipes,data-exp-lab/staged-recipes,petrushy/staged-recipes,asmeurer/staged-recipes,valgur/staged-recipes,chrisburr/staged-recipes,chohner/staged-recipes,jerowe/staged-recipes,vamega/staged-recipes,bmabey/staged-recipes,synapticarbors/staged-recipes,barkls/staged-recipes,hajapy/staged-recipes,jochym/staged-recipes,nicoddemus/staged-recipes,hadim/staged-recipes,caspervdw/staged-recipes,gqmelo/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,mcernak/staged-recipes,mcernak/staged-recipes,OpenPIV/staged-recipes,SylvainCorlay/staged-recipes,tylere/staged-recipes,jcb91/staged-recipes,Cashalow/staged-recipes,koverholt/staged-recipes,atedstone/staged-recipes,igortg/staged-recipes,dharhas/staged-recipes,sodre/staged-recipes,nicoddemus/staged-recipes,johanneskoester/staged-recipes,dharhas/staged-recipes,benvandyke/staged-recipes,NOAA-ORR-ERD/staged-recipes,valgur/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,larray-project/staged-recipes,synapticarbors/staged-recipes,patricksnape/staged-recipes,isuruf/staged-recipes,Juanlu001/staged-recipes,bmabey/staged-recipes,JohnGreeley/staged-recipes,SylvainCorlay/staged-recipes,hbredin/staged-recipes,chrisburr/staged-recipes,tylere/staged-recipes,pstjohn/staged-recipes,dfroger/staged-recipes,khallock/staged-recipes,mcs07/staged-recipes,arokem/staged-recipes,basnijholt/staged-recipes,dschreij/staged-recipes,dschreij/staged-recipes,shadowwalkersb/staged-recipes,johannesring/staged-recipes,mariusvniekerk/staged-recipes,rolando-contrib/staged-recipes,glemaitre/staged-recipes,grlee77/staged-recipes,Savvysherpa/staged-recipes,birdsarah/staged-recipes,blowekamp/staged-recipes,shadowwalkersb/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,sannykr/staged-recipes,data-exp-lab/staged-recipes,stuertz/staged-recipes,hajapy/staged-recipes,ceholden/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,gqmelo/staged-recipes,pmlandwehr/staged-recipes,koverholt/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,rmcgibbo/staged-recipes,Cashalow/staged-recipes,kwilcox/staged-recipes,planetarypy/staged-recipes,basnijholt/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,Juanlu001/staged-recipes,grlee77/staged-recipes,scopatz/staged-recipes,caspervdw/staged-recipes,OpenPIV/staged-recipes,hbredin/staged-recipes,vamega/staged-recipes,conda-forge/staged-recipes,rvalieris/staged-recipes,igortg/staged-recipes,rmcgibbo/staged-recipes,pmlandwehr/staged-recipes,khallock/staged-recipes,rolando-contrib/staged-recipes,dfroger/staged-recipes,richardotis/staged-recipes,guillochon/staged-recipes,barkls/staged-recipes,guillochon/staged-recipes,jakirkham/staged-recipes,sannykr/staged-recipes,glemaitre/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,isuruf/staged-recipes,Savvysherpa/staged-recipes,chohner/staged-recipes,jjhelmus/staged-recipes,johannesring/staged-recipes,JohnGreeley/staged-recipes
|
5a5b4250df21a4e6278371c557a0cb5b1887fd15
|
contrib/appveyor-mingw.bat
|
contrib/appveyor-mingw.bat
|
rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.11.0\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_PLATFORM_PLUGIN_PATH=%QTDIR%\plugins
mkdir build
cd build
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../INSTALL .. || goto :error
cmake --build . --target install || goto :error
ctest -VV || goto :error
goto :EOF
:error
echo Failed with error #%errorlevel%.
exit /b %errorlevel%
|
rem CMake/MinGW workaround - remove sh.exe from PATH
where sh
set MINGW=C:\Qt\Tools\mingw530_32
set QTDIR=C:\Qt\5.11.0\mingw53_32
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
set CMAKE_PREFIX_PATH=%QTDIR%
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin
:: Qt needs to find the windows platform plugin to run tests
set QT_QPA_PLATFORM_PLUGIN_PATH=%QTDIR%\plugins
mkdir build
cd build
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../INSTALL .. || goto :error
cmake --build . --target install || goto :error
rem TODO: reenable this
rem ctest -VV || goto :error
goto :EOF
:error
echo Failed with error #%errorlevel%.
exit /b %errorlevel%
|
Disable tests in Mingw builds
|
Appveyor: Disable tests in Mingw builds
With the move to Qt 5.11 the tests fail to run, disable for now.
|
Batchfile
|
isc
|
equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt
|
282c7fdd307889e39d7c42dea4b898f1890db054
|
scripts/win-build.bat
|
scripts/win-build.bat
|
set SRC_DIR=%cd%\src
set DIST_DIR=%SRC_DIR%\dist
set BUILD_DIR=%SRC_DIR%\build
set OUT_DIR=%SRC_DIR%\bin
set MSI_TARGET_DIR=C:\jenkins\build\whid-x64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
cd
cd %SRC_DIR%
dir
echo on
rmdir /S /Q "%DIST_DIR%"
mkdir "%DIST_DIR%"
mkdir "%BUILD_DIR%"
mkdir "%OUT_DIR%"
pushd "%BUILD_DIR%"
%QTDIR%\bin\qmake.exe ^
-spec win32-msvc ^
"CONFIG += release" ^
"%SRC_DIR%\src.pro"
nmake
popd
::echo "Copying: %BUILD_DIR%\release\Spectrecoin.exe" "%OUT_DIR%"
::copy "%BUILD_DIR%\release\Spectrecoin.exe" "%OUT_DIR%"
::copy "%SRC_DIR%\qt\res\assets\icons\spectrecoin.ico" "%OUT_DIR%"
%QTDIR%\bin\windeployqt "%OUT_DIR%\Spectrecoin.exe"
MOVE "%OUT_DIR%" Spectrecoin
echo "The prepared package is in: "%SRC_DIR%\Spectrecoin"
echo "Everything is OK"
|
set SRC_DIR=%cd%\src
set DIST_DIR=%SRC_DIR%\dist
set BUILD_DIR=%SRC_DIR%\build
set OUT_DIR=%SRC_DIR%\bin
set MSI_TARGET_DIR=C:\jenkins\build\whid-x64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
cd
cd %SRC_DIR%
dir
echo on
rmdir /S /Q "%DIST_DIR%"
mkdir "%DIST_DIR%"
mkdir "%BUILD_DIR%"
mkdir "%OUT_DIR%"
pushd "%BUILD_DIR%"
%QTDIR%\bin\qmake.exe ^
-spec win32-msvc ^
"CONFIG += release" ^
"%SRC_DIR%\src.pro"
nmake
popd
%QTDIR%\bin\windeployqt "%OUT_DIR%\Spectrecoin.exe"
ren "%OUT_DIR%" Spectrecoin
echo "The prepared package is in: "%SRC_DIR%\Spectrecoin"
echo "Everything is OK"
|
Use REN instead of MOVE as the latter has issues with long path
|
Use REN instead of MOVE as the latter has issues with long path
|
Batchfile
|
mit
|
spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre
|
1497768382b623c6b147ea4a126dd0b820e342d8
|
projectCreator.bat
|
projectCreator.bat
|
echo off
set platformsFolder=platforms
set platformName=Visual
set folder=%platformsFolder%\%platformName%
if not exist %folder% (mkdir %folder%)
|
rem echo off
SET mypath=%~dp0
set platformsFolder=platforms
set platformName="Visual Studio 14"
set folder=%mypath%\%platformsFolder%\%platformName%
if not exist %folder% (mkdir %folder%)
cd %platformsFolder%
rem call cmake
cmake.exe .. -G%platformName%
cd %mypath%
pause
|
Create project for visual studio 14
|
Create project for visual studio 14
|
Batchfile
|
mit
|
aphilippe/AppLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/ClappLauncher
|
b31738491246f6803d330a8b34cb66836831890f
|
MonetDB/NT/Mserver.bat
|
MonetDB/NT/Mserver.bat
|
@rem figure out the folder name
@set MONETDB=%~dp0
@rem remove the final backslash from the path
@set MONETDB=%MONETDB:~0,-1%
@rem extend the search path with our EXE and DLL folders
@rem we depend on pthreadVCE.dll having been copied to the lib folder
@set PATH=%MONETDB%\bin;%MONETDB%\lib;%PATH%
@rem start the real server
@"%MONETDB%\bin\Mserver.exe" --set "prefix=%MONETDB%" --set "exec_prefix=%MONETDB%" %*
|
@echo off
rem figure out the folder name
set MONETDB=%~dp0
rem remove the final backslash from the path
set MONETDB=%MONETDB:~0,-1%
rem extend the search path with our EXE and DLL folders
rem we depend on pthreadVCE.dll having been copied to the lib folder
set PATH=%MONETDB%\bin;%MONETDB%\lib;%PATH%
set MONETDBFARM=
set SQLLOGDIR=
if "%ALLUSERSPROFILE%" == "" goto skip
set MONETDBFARM="--dbfarm=%ALLUSERSPROFILE%\Application Data\MonetDB"
set SQLLOGDIR=--set "sql_logdir=%ALLUSERSPROFILE%\Application Data\MonetDB\var\MonetDB\log"
:skip
rem start the real server
"%MONETDB%\bin\Mserver.exe" --set "prefix=%MONETDB%" --set "exec_prefix=%MONETDB%" %MONETDBFARM% %SQLLOGDIR% %*
|
Put database and log files in Application Data folder instead of Program Files folder.
|
Put database and log files in Application Data folder instead of Program Files folder.
|
Batchfile
|
mpl-2.0
|
zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb
|
c3ef86e43ad4b05f0c0fffd647e4f07a2026bacf
|
windows/scripts/add_systemstart_task.bat
|
windows/scripts/add_systemstart_task.bat
|
@echo off
TITLE Adding task to start KA Lite at system start
setlocal
for /f "tokens=4-6 delims=[.XP " %%i in ('ver') do set WIN_VERSION="%%i.%%j"
rem 5.1 and 5.2 are XP and Server 2003/64-bit XP
if %WIN_VERSION% LEQ "5.2" (
echo This feature is unavailable on this version of Windows.
pause
) else (
schtasks /create /tn "KALite" /tr "\"%KALITE_SCRIPT_DIR%\kalite.bat\" start" /sc onstart /ru SYSTEM /f
)
|
@echo off
TITLE Adding task to start KA Lite at system start
setlocal
for /f "tokens=4-6 delims=[.XP " %%i in ('ver') do set WIN_VERSION="%%i.%%j"
rem 5.1 and 5.2 are XP and Server 2003/64-bit XP
if %WIN_VERSION% LEQ "5.2" (
echo This feature is unavailable on this version of Windows.
pause
) else (
schtasks /create /tn "KALite" /tr "\"%KALITE_SCRIPT_DIR%\kalite.bat\" start" /sc onstart /ru %USERNAME% /f
)
|
Create scheduled task as current user
|
Create scheduled task as current user
|
Batchfile
|
mit
|
ruimalheiro/installers,learningequality/installers,benjaoming/installers,benjaoming/installers,mrpau/installers,mrpau/installers,learningequality/installers,learningequality/ka-lite-installers,benjaoming/installers,learningequality/installers,mrpau/installers,ruimalheiro/installers,learningequality/ka-lite-installers,learningequality/ka-lite-installers,learningequality/installers,benjaoming/installers,learningequality/ka-lite-installers,ruimalheiro/installers,mrpau/installers,ruimalheiro/installers
|
4acb95c32d9f1ea2f7c2405b0708c30279304d3d
|
build.libgit2sharp.cmd
|
build.libgit2sharp.cmd
|
set FrameworkVersion=v4.0.30319
set FrameworkDir=%SystemRoot%\Microsoft.NET\Framework
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" CI-build.msbuild
exit /B %ERRORLEVEL%
|
SET BASEDIR=%~dp0
set FrameworkVersion=v4.0.30319
set FrameworkDir=%SystemRoot%\Microsoft.NET\Framework
"%FrameworkDir%\%FrameworkVersion%\msbuild.exe" "%BASEDIR%CI-build.msbuild"
exit /B %ERRORLEVEL%
|
Make build Windows command line launcher independent from the current working directory
|
Make build Windows command line launcher independent from the current working directory
|
Batchfile
|
mit
|
psawey/libgit2sharp,jeffhostetler/public_libgit2sharp,dlsteuer/libgit2sharp,GeertvanHorrik/libgit2sharp,jamill/libgit2sharp,github/libgit2sharp,PKRoma/libgit2sharp,xoofx/libgit2sharp,vivekpradhanC/libgit2sharp,AArnott/libgit2sharp,AArnott/libgit2sharp,OidaTiftla/libgit2sharp,AMSadek/libgit2sharp,paulcbetts/libgit2sharp,vivekpradhanC/libgit2sharp,paulcbetts/libgit2sharp,ethomson/libgit2sharp,vorou/libgit2sharp,dlsteuer/libgit2sharp,yishaigalatzer/LibGit2SharpCheckOutTests,oliver-feng/libgit2sharp,AMSadek/libgit2sharp,jorgeamado/libgit2sharp,whoisj/libgit2sharp,mono/libgit2sharp,jorgeamado/libgit2sharp,red-gate/libgit2sharp,github/libgit2sharp,oliver-feng/libgit2sharp,sushihangover/libgit2sharp,OidaTiftla/libgit2sharp,Zoxive/libgit2sharp,nulltoken/libgit2sharp,mono/libgit2sharp,Skybladev2/libgit2sharp,libgit2/libgit2sharp,vorou/libgit2sharp,jeffhostetler/public_libgit2sharp,shana/libgit2sharp,sushihangover/libgit2sharp,GeertvanHorrik/libgit2sharp,rcorre/libgit2sharp,yishaigalatzer/LibGit2SharpCheckOutTests,shana/libgit2sharp,carlosmn/libgit2sharp,ethomson/libgit2sharp,carlosmn/libgit2sharp,xoofx/libgit2sharp,Skybladev2/libgit2sharp,jamill/libgit2sharp,whoisj/libgit2sharp,red-gate/libgit2sharp,rcorre/libgit2sharp,Zoxive/libgit2sharp,nulltoken/libgit2sharp,psawey/libgit2sharp
|
c74962497616d0dacd89fd11cc25db4fbbe60637
|
scripts/code.bat
|
scripts/code.bat
|
@echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Node modules
if not exist node_modules call yarn
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
:: Download Electron if needed
node build\lib\electron.js
if %errorlevel% neq 0 node .\node_modules\gulp\bin\gulp.js electron
:: Build
if not exist out node .\node_modules\gulp\bin\gulp.js compile
:: Configuration
set NODE_ENV=development
set VSCODE_DEV=1
set VSCODE_CLI=1
set ELECTRON_DEFAULT_ERROR_MODE=1
set ELECTRON_ENABLE_LOGGING=1
set ELECTRON_ENABLE_STACK_DUMPING=1
:: Launch Code
:: Use the following to get v8 tracing:
:: %CODE% --js-flags="--trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces" . %*
%CODE% . %*
popd
endlocal
|
@echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Node modules
if not exist node_modules call yarn
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
:: Download Electron if needed
node build\lib\electron.js
if %errorlevel% neq 0 node .\node_modules\gulp\bin\gulp.js electron
:: Get built-in extensions
node build\lib\builtInExtensions.js || .\node_modules\.bin\gulp builtInExtensions
:: Build
if not exist out node .\node_modules\gulp\bin\gulp.js compile
:: Configuration
set NODE_ENV=development
set VSCODE_DEV=1
set VSCODE_CLI=1
set ELECTRON_DEFAULT_ERROR_MODE=1
set ELECTRON_ENABLE_LOGGING=1
set ELECTRON_ENABLE_STACK_DUMPING=1
:: Launch Code
:: Use the following to get v8 tracing:
:: %CODE% --js-flags="--trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces" . %*
%CODE% . %*
popd
endlocal
|
Install builtInExtensions on windows too
|
Install builtInExtensions on windows too
|
Batchfile
|
mit
|
microsoft/vscode,DustinCampbell/vscode,Microsoft/vscode,eamodio/vscode,hoovercj/vscode,mjbvz/vscode,rishii7/vscode,0xmohit/vscode,eamodio/vscode,joaomoreno/vscode,eamodio/vscode,microsoft/vscode,cleidigh/vscode,the-ress/vscode,DustinCampbell/vscode,landonepps/vscode,joaomoreno/vscode,microlv/vscode,mjbvz/vscode,0xmohit/vscode,Microsoft/vscode,0xmohit/vscode,the-ress/vscode,hoovercj/vscode,joaomoreno/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,joaomoreno/vscode,landonepps/vscode,landonepps/vscode,microsoft/vscode,microlv/vscode,cleidigh/vscode,cleidigh/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,microsoft/vscode,hoovercj/vscode,cleidigh/vscode,microlv/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,0xmohit/vscode,Krzysztof-Cieslak/vscode,microlv/vscode,cleidigh/vscode,joaomoreno/vscode,rishii7/vscode,mjbvz/vscode,eamodio/vscode,hoovercj/vscode,cleidigh/vscode,Microsoft/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,hoovercj/vscode,microsoft/vscode,landonepps/vscode,rishii7/vscode,eamodio/vscode,microsoft/vscode,microsoft/vscode,DustinCampbell/vscode,mjbvz/vscode,Microsoft/vscode,hoovercj/vscode,cleidigh/vscode,Microsoft/vscode,DustinCampbell/vscode,the-ress/vscode,Microsoft/vscode,0xmohit/vscode,the-ress/vscode,mjbvz/vscode,Microsoft/vscode,hoovercj/vscode,DustinCampbell/vscode,0xmohit/vscode,eamodio/vscode,joaomoreno/vscode,the-ress/vscode,eamodio/vscode,rishii7/vscode,rishii7/vscode,microlv/vscode,microlv/vscode,0xmohit/vscode,DustinCampbell/vscode,rishii7/vscode,0xmohit/vscode,eamodio/vscode,Microsoft/vscode,eamodio/vscode,joaomoreno/vscode,joaomoreno/vscode,microlv/vscode,joaomoreno/vscode,microsoft/vscode,DustinCampbell/vscode,cleidigh/vscode,cleidigh/vscode,Microsoft/vscode,cleidigh/vscode,rishii7/vscode,Microsoft/vscode,mjbvz/vscode,joaomoreno/vscode,mjbvz/vscode,cleidigh/vscode,hoovercj/vscode,microlv/vscode,microlv/vscode,0xmohit/vscode,joaomoreno/vscode,the-ress/vscode,microsoft/vscode,mjbvz/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,hoovercj/vscode,rishii7/vscode,rishii7/vscode,rishii7/vscode,Microsoft/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,hoovercj/vscode,Microsoft/vscode,Krzysztof-Cieslak/vscode,0xmohit/vscode,DustinCampbell/vscode,0xmohit/vscode,landonepps/vscode,hoovercj/vscode,mjbvz/vscode,joaomoreno/vscode,microsoft/vscode,mjbvz/vscode,hoovercj/vscode,cleidigh/vscode,rishii7/vscode,cra0zy/VSCode,mjbvz/vscode,mjbvz/vscode,DustinCampbell/vscode,microlv/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,microlv/vscode,landonepps/vscode,eamodio/vscode,0xmohit/vscode,Microsoft/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,microlv/vscode,DustinCampbell/vscode,landonepps/vscode,DustinCampbell/vscode,microsoft/vscode,landonepps/vscode,DustinCampbell/vscode,Microsoft/vscode,hoovercj/vscode,eamodio/vscode,joaomoreno/vscode,cleidigh/vscode,cleidigh/vscode,the-ress/vscode,cleidigh/vscode,joaomoreno/vscode,eamodio/vscode,rishii7/vscode,DustinCampbell/vscode,microsoft/vscode,landonepps/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,landonepps/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,the-ress/vscode,landonepps/vscode,the-ress/vscode,joaomoreno/vscode,DustinCampbell/vscode,microlv/vscode,eamodio/vscode,microlv/vscode,hoovercj/vscode,microsoft/vscode,cleidigh/vscode,landonepps/vscode,Microsoft/vscode,mjbvz/vscode,mjbvz/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,microlv/vscode,hoovercj/vscode,eamodio/vscode,microlv/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,0xmohit/vscode,landonepps/vscode,DustinCampbell/vscode,0xmohit/vscode,hoovercj/vscode,mjbvz/vscode,rishii7/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,microsoft/vscode,joaomoreno/vscode,cleidigh/vscode,microsoft/vscode,mjbvz/vscode,rishii7/vscode,0xmohit/vscode,rishii7/vscode,microlv/vscode,0xmohit/vscode,0xmohit/vscode,mjbvz/vscode,rishii7/vscode,hoovercj/vscode,the-ress/vscode,joaomoreno/vscode,DustinCampbell/vscode,rishii7/vscode,DustinCampbell/vscode
|
815c649679064eec970c1753a42d66a3f10d2255
|
context-menu-disable-grepWin.bat
|
context-menu-disable-grepWin.bat
|
@echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=grepWin...
reg add "%registryRoot%\*\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\background\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Drive\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Folder\shell\%key%" /v LegacyDisable /t REG_SZ /f
|
@echo off
setlocal EnableDelayedExpansion
set registryRoot=HKCU\Software\Classes
set key=grepWin...
reg add "%registryRoot%\*\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\background\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Drive\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Folder\shell\%key%" /v LegacyDisable /t REG_SZ /f
set key=grepWin
reg add "%registryRoot%\*\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\background\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Directory\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Drive\shell\%key%" /v LegacyDisable /t REG_SZ /f
reg add "%registryRoot%\Folder\shell\%key%" /v LegacyDisable /t REG_SZ /f
|
Add another key for grepWin to deactivate
|
Add another key for grepWin to deactivate
|
Batchfile
|
mit
|
ArloL/dotfiles,ArloL/dotfiles
|
b8132e94810e245a87b6201667af311e753cb122
|
bintrayupload.bat
|
bintrayupload.bat
|
@echo off
setlocal EnableDelayedExpansion
SET username=%1
SET apikey=%2
SET modules="MediaPlayer" "MediaPlayer-DASH" "MediaPlayer-GLES" "MediaPlayer-GLES-FlowAbs" "MediaPlayer-GLES-QrMarker"
FOR %%m in (%modules%) DO (
gradlew %%~m:clean %%~m:build %%~m:bintrayUpload -PbintrayUser=%username% -PbintrayKey=%apikey% -PdryRun=false
)
|
@echo off
setlocal EnableDelayedExpansion
REM Uploading all modules at once (with one gradle command) does not work any more, so a separate command for each module must be issued
SET username=%1
SET apikey=%2
SET modules="MediaPlayer" "MediaPlayer-DASH" "MediaPlayer-GLES" "MediaPlayer-GLES-FlowAbs" "MediaPlayer-GLES-QrMarker"
FOR %%m in (%modules%) DO (
gradlew %%~m:clean %%~m:build %%~m:bintrayUpload -PbintrayUser=%username% -PbintrayKey=%apikey% -PdryRun=false
)
|
Add explanation to upload script
|
Add explanation to upload script
|
Batchfile
|
apache-2.0
|
protyposis/Spectaculum,protyposis/MediaPlayer-Extended,protyposis/MediaPlayer-Extended,protyposis/Spectaculum
|
14232c16be208ab2602cff6d5fd2d00247da5ac4
|
tasks/deploy_tasks.bat
|
tasks/deploy_tasks.bat
|
for /d %%d in (*) do (
xcopy /y /s %%d\deploy\* ..\checksystem\src\deploy\site\download\
)
xcopy /y /s ..\checksystem\download\* ..\checksystem\src\deploy\site\download\
|
echo "Zipping backup.zip..."
pushd ..\checksystem\download\1b1baa8dbc68603a
%~dp0tools\zip backup.zip *.txt
popd
echo "Copying to site..."
for /d %%d in (*) do (
xcopy /y /s %%d\deploy\* ..\checksystem\src\deploy\site\download\
)
xcopy /y /s ..\checksystem\download\* ..\checksystem\src\deploy\site\download\
|
Add zipping to tasks deploy process
|
Add zipping to tasks deploy process
|
Batchfile
|
mit
|
HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015,HackerDom/qctf-starter-2015
|
8a0d72c692c9faeb21711c6bf8cee307275cef8f
|
Build.bat
|
Build.bat
|
SETLOCAL
SET Version=2.0.1
SET Prerelease=auto
CALL Tools\Build\FindVisualStudio.bat || GOTO Error0
REM Updating the build version.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. && GOTO Error0
NuGet restore -NonInteractive || GOTO Error0
MSBuild /target:rebuild /p:Configuration=Debug /verbosity:minimal /fileLogger || GOTO Error0
IF NOT EXIST Install md Install
NuGet pack -OutputDirectory Install || GOTO Error0
REM Updating the build version back to "dev" (internal development build), to avoid spamming git history with timestamped prerelease versions.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% dev || GOTO Error0
@REM ================================================
@ECHO.
@ECHO %~nx0 SUCCESSFULLY COMPLETED.
@EXIT /B 0
:Error0
@ECHO.
@ECHO %~nx0 FAILED.
@IF /I [%1] NEQ [/NOPAUSE] @PAUSE
@EXIT /B 1
|
SETLOCAL
SET Version=2.0.1
SET Prerelease=auto
CALL Tools\Build\FindVisualStudio.bat || GOTO Error0
REM Updating the build version.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. && GOTO Error0
NuGet restore -NonInteractive || GOTO Error0
MSBuild /target:rebuild /p:Configuration=Debug /verbosity:minimal /fileLogger || GOTO Error0
IF NOT EXIST Install md Install
NuGet pack -OutputDirectory Install || GOTO Error0
REM Updating the build version back to "dev" (internal development build), to avoid spamming git history with timestamped prerelease versions.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% dev || GOTO Error0
@REM ================================================
@ECHO.
@ECHO %~nx0 SUCCESSFULLY COMPLETED.
@EXIT /B 0
:Error0
@PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% dev >nul
@ECHO.
@ECHO %~nx0 FAILED.
@IF /I [%1] NEQ [/NOPAUSE] @PAUSE
@EXIT /B 1
|
Revert ChangeVersion on error in build script
|
Revert ChangeVersion on error in build script
|
Batchfile
|
agpl-3.0
|
Rhetos/SimpleSPRTEmail
|
907fbce654b9b1e9ae98b534581f3d4f6580b3f1
|
misc/env/user-example/win32/env.user.bat
|
misc/env/user-example/win32/env.user.bat
|
ECHO OFF
SET PATH=%PATH%;%PROJECT_HOME%\misc\env\user\win32\scripts
REM SET PATH=%PATH%;C:\Dev\vagrant\bin
ECHO User Environment Setup.
|
ECHO OFF
SET PATH=%PATH%;%PROJECT_HOME%\misc\env\user\win32\scripts
REM SET PATH=%PATH%;C:\Dev\vagrant\bin
SET PATH=%PATH%;C:\cygwin64\bin
ECHO User Environment Setup.
|
Add cygwin to env path for windows dev
|
Add cygwin to env path for windows dev
|
Batchfile
|
mit
|
kaliatech/chimaney-voter-001,kaliatech/chimaney-voter-001
|
5c83a5287f433041a8f449946a494cea56961b38
|
Build-UWP.bat
|
Build-UWP.bat
|
@echo off
set fdir="%ProgramFiles%\MSBuild\14.0\Bin"
if not exist %fdir% (
set fdir="%ProgramFiles(x86)%\MSBuild\14.0\Bin"
)
set msbuild=%fdir%\msbuild.exe
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Debug /t:Clean;Rebuild /p:OutputPath=..\bin\UWP\Debug
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Release /t:Clean;Rebuild /p:OutputPath=..\bin\UWP\Release
pause
|
@echo off
set fdir="%ProgramFiles%\MSBuild\14.0\Bin"
if not exist %fdir% (
set fdir="%ProgramFiles(x86)%\MSBuild\14.0\Bin"
)
set msbuild=%fdir%\msbuild.exe
set outDir=bin\UWP\Debug
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Debug /t:Clean;Rebuild /p:OutDir=..\%outDir%
set outDir=%outDir%\WebSocket4Net.UWP
del %outDir%\*.pdb
del %outDir%\*.pri
set outDir=bin\UWP\Release
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G"
%msbuild% WebSocket4Net.UWP.sln /p:Configuration=Release /t:Clean;Rebuild /p:OutDir=..\%outDir%
set outDir=%outDir%\WebSocket4Net.UWP
del %outDir%\*.pdb
del %outDir%\*.pri
pause
|
Build script fixes for UWP.
|
Build script fixes for UWP.
|
Batchfile
|
apache-2.0
|
wiyonoaten/WebSocket4Net,wiyonoaten/WebSocket4Net,wiyonoaten/WebSocket4Net
|
c236736fab825702735907bb63262cba46a65a63
|
Tools/VsDevCmd.cmd
|
Tools/VsDevCmd.cmd
|
@echo off
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools
if exist "%TOOLSDIR%" goto found
goto notfound
:found
call "%TOOLSDIR%\VsDevCmd.bat"
goto end
:notfound
echo "Unable to find Visual Studio folder."
pause
:end
|
@echo off
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\Preview\Professional\Common7\Tools
if exist "%TOOLSDIR%" goto found
set TOOLSDIR=C:\Program Files (x86)\Microsoft Visual Studio\Preview\Enterprise\Common7\Tools
if exist "%TOOLSDIR%" goto found
goto notfound
:found
call "%TOOLSDIR%\VsDevCmd.bat"
goto end
:notfound
echo "Unable to find Visual Studio folder."
pause
:end
|
Add support for the Preview version of Visual Studio.
|
Add support for the Preview version of Visual Studio.
|
Batchfile
|
apache-2.0
|
dlemstra/Magick.NET,dlemstra/Magick.NET
|
6d89d4bc26df51cb6a83ec40d75264594ab827d9
|
bin/shcol.bat
|
bin/shcol.bat
|
@python -m shcol %*
|
:: Copyright (c) 2013-2015, Sebastian Linke
:: Released under the Simplified BSD license
:: (see LICENSE file for details).
:: A starter to invoke `shcol` from the Windows command-line.
@python -m shcol %*
|
Add copyright note and description to Windows-specific starter.
|
Add copyright note and description to Windows-specific starter.
|
Batchfile
|
bsd-2-clause
|
seblin/shcol
|
3076ad918056fba7f3eb9a3cc4073af403b1e523
|
bin/installOnWindows.bat
|
bin/installOnWindows.bat
|
@echo off
:: change directory to etherpad-lite root
cd /D "%~dp0\.."
echo Checking node version...
set check_version="if(['6','8'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad Lite requires v0.6.x or v0.8.x'); process.exit(1) }"
cmd /C node -e %check_version% || exit /B 1
echo _
echo Installing etherpad-lite and dependencies...
cmd /C npm install src/ || exit /B 1
echo _
echo Copying custom templates...
set custom_dir=node_modules\ep_etherpad-lite\static\custom
FOR %%f IN (index pad timeslider) DO (
if NOT EXIST "%custom_dir%\%%f.js" copy "%custom_dir%\js.template" "%custom_dir%\%%f.js"
if NOT EXIST "%custom_dir%\%%f.css" copy "%custom_dir%\css.template" "%custom_dir%\%%f.css"
)
echo _
echo Clearing cache...
del /S var\minified*
echo _
echo Setting up settings.json...
IF NOT EXIST settings.json (
echo Can't find settings.json.
echo Copying settings.json.template...
cmd /C copy settings.json.template settings.json || exit /B 1
)
echo _
echo Installed Etherpad-lite!
|
@echo off
:: change directory to etherpad-lite root
cd /D "%~dp0\.."
:: Is node installed?
cmd /C node -e "" || ( echo "Please install node.js ( http://nodejs.org )" && exit /B 1 )
echo _
echo Checking node version...
set check_version="if(['6','8'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad Lite requires v0.6.x or v0.8.x'); process.exit(1) }"
cmd /C node -e %check_version% || exit /B 1
echo _
echo Installing etherpad-lite and dependencies...
cmd /C npm install src/ || exit /B 1
echo _
echo Copying custom templates...
set custom_dir=node_modules\ep_etherpad-lite\static\custom
FOR %%f IN (index pad timeslider) DO (
if NOT EXIST "%custom_dir%\%%f.js" copy "%custom_dir%\js.template" "%custom_dir%\%%f.js"
if NOT EXIST "%custom_dir%\%%f.css" copy "%custom_dir%\css.template" "%custom_dir%\%%f.css"
)
echo _
echo Clearing cache...
del /S var\minified*
echo _
echo Setting up settings.json...
IF NOT EXIST settings.json (
echo Can't find settings.json.
echo Copying settings.json.template...
cmd /C copy settings.json.template settings.json || exit /B 1
)
echo _
echo Installed Etherpad-lite!
|
Exit on install if node is not installed.
|
Exit on install if node is not installed.
|
Batchfile
|
apache-2.0
|
thomasrussellmurphy/etherpad-lite,morpheyesh/etherpad-lite,kenonelah/FactsheetPlugin,Gared/etherpad-lite,flavorjones/etherpad-lite-cf,KonradMil/etherpad-lite,indykish/etherpad-lite,0x46616c6b/etherpad-lite,leangjia/etherpad-lite,University-of-Potsdam-MM/etherpad-lite,ktdev/etherpad-lite,kenonelah/FactsheetPlugin,fourplusone/etherpad-lite,fread/etherpad-lite,skulbrane/etherpad-lite,skulbrane/etherpad-lite,jeredkenna/pad,Atober/etherpad-lite,webzwo0i/etherpad-lite,PuZZleDucK/etherpad-lite,marcstreeter/etherpad-lite,tudorilisoi/etherpad-lite,eXcomm/etherpad-lite,KonradMil/etherpad-lite,fread/etherpad-lite,delkyd/etherpad-lite,cmbirk/etherpad-lite,flavorjones/etherpad-lite-cf,ErisDS/etherpad-lite,wonderxboy/etherpad-lite,liuliming2008/smock-server,DaveAtGit/secpad,tiblu/etherpad-lite,ErisDS/etherpad-lite,2-B/etherpad-lite,goldquest/etherpad-lite,lealife/etherpad-lite,ocdtrekkie/etherpad-lite,cjb/etherpad-lite,lealife/etherpad-lite,DaveAtGit/secpad,thebestwaytodesignbuildandshipsoftware/etherpad-lite,yijunwu/etherpad-lite,ktdev/etherpad-lite,neynah/etherpad-lite,cloudfoundry-community/etherpad-lite-cf,mozilla/etherpad-lite,rschiang/etherpad-lite,fourplusone/etherpad-lite,coreyaus/etherpad-new,thomasrussellmurphy/etherpad-lite,yijunwu/etherpad-lite,ZackC/MirrorTest,pymjer/etherpad-lite,wonderxboy/etherpad-lite,eXcomm/etherpad-lite,liuliming2008/smock-server,fourplusone/etherpad-lite,morpheyesh/etherpad-lite,flavorjones/etherpad-lite-cf,unnamed89/etherpad,cjb/etherpad-lite,kentonv/etherpad-lite,ashwini-angular/etherpad-lite,asac/etherpad-lite,calangohc/etherpad-lite,xavidotron/etherpad-lite,jumperchen/etherpad-lite,ashwini-angular/etherpad-lite,mcanthony/etherpad-lite,storytouch/etherpad-lite,yijunwu/etherpad-lite,KonradMil/etherpad-lite,bainsy88/etherpad-lite,ocdtrekkie/etherpad-lite,Jeff88Ho/etherpad-lite,tudorilisoi/etherpad-lite,cdg46/etherpad-lite,coreyaus/etherpad-new,tudorilisoi/etherpad-lite,delkyd/etherpad-lite,viaregio/etherpad-lite,ether/etherpad-lite,University-of-Potsdam-MM/etherpad-lite,Stackato-Apps/etherpad-lite,meticulo3366/etherpad-lite,0x46616c6b/etherpad-lite,xavidotron/etherpad-lite,adrienstoffel/ctfpad,calangohc/etherpad-lite,jumperchen/etherpad-lite,syci/etherpad-lite,morpheyesh/etherpad-lite,morpheyesh/etherpad-lite,lpagliari/etherpad-lite,joequant/etherpad-lite,emilyxxie/etherpad-lite,skulbrane/etherpad-lite,fourplusone/etherpad-lite,aptivate/etherpad-lite,KenanSulayman/etherpad-lite,0x46616c6b/etherpad-lite,ujdhesa/etherpad-lite,Jeff88Ho/etherpad-lite,Savi1234/savisql,lpagliari/etherpad-lite,ocdtrekkie/etherpad-lite,tiblu/etherpad-lite,PuZZleDucK/etherpad-lite,ErisDS/etherpad-lite,Atober/etherpad-lite,jeredkenna/pad,viaregio/etherpad-lite,bainsy88/etherpad-lite,goldquest/etherpad-lite,aptivate/etherpad-lite,kentonv/etherpad-lite,wonderxboy/etherpad-lite,2-B/etherpad-lite,KenanSulayman/etherpad-lite,ujdhesa/etherpad-lite,ether/etherpad-lite,Gared/etherpad-lite,cjb/etherpad-lite,thomasalrin/etherpad-lite,ocdtrekkie/etherpad-lite,jeredkenna/pad,thomasalrin/etherpad-lite,Atober/etherpad-lite,tiandishi/wk,neynah/etherpad-lite,adrienstoffel/ctfpad,liuliming2008/smock-server,mcanthony/etherpad-lite,DaveAtGit/secpad,thomasrussellmurphy/etherpad-lite,fread/etherpad-lite,rschiang/etherpad-lite,bjonnh/etherpad-lite,adrienstoffel/ctfpad,syci/etherpad-lite,asac/etherpad-lite,jumperchen/etherpad-lite,ZackC/MirrorTest,sudowork/interview,vpistis/etherpad-lite,meticulo3366/etherpad-lite,neynah/etherpad-lite,bjonnh/etherpad-lite,vpistis/etherpad-lite,yijunwu/etherpad-lite,lealife/etherpad-lite,bainsy88/etherpad-lite,thebestwaytodesignbuildandshipsoftware/etherpad-lite,viaregio/etherpad-lite,Atober/etherpad-lite,indykish/etherpad-lite,cloudfoundry-community/etherpad-lite-cf,Gared/etherpad-lite,mcanthony/etherpad-lite,thomasalrin/etherpad-lite,ashwini-angular/etherpad-lite,ErisDS/etherpad-lite,simong/etherpad-lite,emilyxxie/etherpad-lite,ashwini-angular/etherpad-lite,joequant/etherpad-lite,syci/etherpad-lite,Jeff88Ho/etherpad-lite,leangjia/etherpad-lite,xavidotron/etherpad-lite,mozilla/etherpad-lite,jeredkenna/pad,aptivate/etherpad-lite,thomasalrin/etherpad-lite,rschiang/etherpad-lite,skulbrane/etherpad-lite,tudorilisoi/etherpad-lite,vpistis/etherpad-lite,Stackato-Apps/etherpad-lite,2-B/etherpad-lite,aug-riedinger/etherpad,goldquest/etherpad-lite,pymjer/etherpad-lite,kentonv/etherpad-lite,0x46616c6b/etherpad-lite,Stackato-Apps/etherpad-lite,emilyxxie/etherpad-lite,cloudfoundry-community/etherpad-lite-cf,thebestwaytodesignbuildandshipsoftware/etherpad-lite,joequant/etherpad-lite,cmbirk/etherpad-lite,viaregio/etherpad-lite,PuZZleDucK/etherpad-lite,mani89/etherpad_ncloud,calangohc/etherpad-lite,storytouch/etherpad-lite,bjonnh/etherpad-lite,Savi1234/savisql,flavorjones/etherpad-lite-cf,jumperchen/etherpad-lite,meticulo3366/etherpad-lite,PuZZleDucK/etherpad-lite,cdg46/etherpad-lite,joequant/etherpad-lite,delkyd/etherpad-lite,thebestwaytodesignbuildandshipsoftware/etherpad-lite,tiblu/etherpad-lite,webzwo0i/etherpad-lite,asac/etherpad-lite,goldquest/etherpad-lite,Savi1234/savisql,unnamed89/etherpad,unnamed89/etherpad,emilyxxie/etherpad-lite,aptivate/etherpad-lite,syci/etherpad-lite,delkyd/etherpad-lite,ktdev/etherpad-lite,sudowork/interview,webzwo0i/etherpad-lite,simong/etherpad-lite,storytouch/etherpad-lite,Jeff88Ho/etherpad-lite,kentonv/etherpad-lite,ujdhesa/etherpad-lite,indykish/etherpad-lite,fread/etherpad-lite,bainsy88/etherpad-lite,ktdev/etherpad-lite,xavidotron/etherpad-lite,kenonelah/FactsheetPlugin,neynah/etherpad-lite,girgen/etherpad-lite,eXcomm/etherpad-lite,nka11/etherpad-lite,calangohc/etherpad-lite,lpagliari/etherpad-lite,girgen/etherpad-lite,ujdhesa/etherpad-lite,mcanthony/etherpad-lite,asac/etherpad-lite,ZackC/MirrorTest,thomasrussellmurphy/etherpad-lite,Gared/etherpad-lite,tiandishi/wk,cmbirk/etherpad-lite,marcstreeter/etherpad-lite,wonderxboy/etherpad-lite,ZackC/MirrorTest,unnamed89/etherpad,bjonnh/etherpad-lite,DaveAtGit/secpad,nka11/etherpad-lite,eXcomm/etherpad-lite,marcstreeter/etherpad-lite,tiblu/etherpad-lite,indykish/etherpad-lite,pymjer/etherpad-lite,webzwo0i/etherpad-lite,KonradMil/etherpad-lite,cloudfoundry-community/etherpad-lite-cf,Stackato-Apps/etherpad-lite,leangjia/etherpad-lite,liuliming2008/smock-server,leangjia/etherpad-lite,adrienstoffel/ctfpad,pymjer/etherpad-lite,rschiang/etherpad-lite,marcstreeter/etherpad-lite,mani89/etherpad_ncloud,2-B/etherpad-lite,coreyaus/etherpad-new,University-of-Potsdam-MM/etherpad-lite,cmbirk/etherpad-lite,cjb/etherpad-lite,vpistis/etherpad-lite,aug-riedinger/etherpad,kenonelah/FactsheetPlugin,ether/etherpad-lite,lpagliari/etherpad-lite,University-of-Potsdam-MM/etherpad-lite
|
f1c37f162ca90b8e4cfa7e1e43f34451f8a2fa3f
|
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 30 -clientVersion "0.57" -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 30 -clientVersion "0.581" -password "" -tcpLobby "149.202.51.185" 25565
@echo.
@echo Restarting server...
@echo.
goto start
|
Update example .bat with latest client version
|
[Nomad] Update example .bat with latest client version
|
Batchfile
|
mit
|
Visagalis/Oxide,LaserHydra/Oxide,Nogrod/Oxide-2,LaserHydra/Oxide,Nogrod/Oxide-2,bawNg/Oxide,bawNg/Oxide,Visagalis/Oxide
|
c7be52ebb97b4416f3c398aa6f9387770c1a53e2
|
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>>$*
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\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$*
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\Sublime Text 3" GOTO NOSUBLIME
doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $*
:NOSUBLIME
rem Open functionality
doskey open=start $*
@echo on
|
Use $G instead of > for doskey
|
Use $G instead of > for doskey
|
Batchfile
|
mit
|
ArloL/dotfiles,ArloL/dotfiles
|
316ad0c2ea1b04f37576640b8e85d2b7725e5cb1
|
recipes/sciplot/bld.bat
|
recipes/sciplot/bld.bat
|
mkdir build
cd build
REM Configure step
cmake .. ^
-GNinja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_EXE_LINKER_FLAGS="/FORCE:MULTIPLE"
REM Note: /FORCE:MULTIPLE is needed because of a bug in MSVC 14.1
REM in dealing with inline definitions of static
REM data members (Plot::m_counter and Figure::m_counter)
if errorlevel 1 exit 1
REM Build step
ninja install
if errorlevel 1 exit 1
REM Test step
tests\Release\sciplot-cpptests.exe
if errorlevel 1 exit 1
|
mkdir build
cd build
REM Configure step
cmake .. ^
-GNinja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_EXE_LINKER_FLAGS="/FORCE:MULTIPLE"
REM Note: /FORCE:MULTIPLE is needed because of a bug in MSVC 14.1
REM in dealing with inline definitions of static
REM data members (Plot::m_counter and Figure::m_counter)
if errorlevel 1 exit 1
REM Build step
ninja install
if errorlevel 1 exit 1
REM Due to /FORCE:MULTIPLE, the executable for the test does not work.
REM Solution is to use a newer version of MSVC (e.g., 14.2 instead of 14.1)
REM Test step
REM tests\Release\sciplot-cpptests.exe
if errorlevel 1 exit 1
|
Add note about test in windows
|
Add note about test in windows
|
Batchfile
|
bsd-3-clause
|
patricksnape/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.