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 |
|---|---|---|---|---|---|---|---|---|---|
3f7ef92440f9f05f40ad5588d7b8f0c8d51fa534 | bravo_logger.bat | bravo_logger.bat | @ECHO OFF
SETLOCAL
SET LOG_PATH="H:\bravo_logs\"
SET LOG_FILE="marvin_errors.log"
IF NOT EXIST %LOG_PATH% (SET LOG_PATH="%USERPROFILE%\Desktop\")
SET SCRIPT="%USERPROFILE%\Repos\standalone_scripts\upload_robot_logs.py"
SET STB_CONF="%USERPROFILE%\Repos\statusdb.yaml"
SET STB_LOG="%USERPROFILE%\Repos\statusdb_upload.log... | @ECHO OFF
SETLOCAL
SET LOG_PATH="Y:\Bravo\bravo_logs\"
SET LOG_FILE="marvin_errors.log"
IF NOT EXIST %LOG_PATH% (SET LOG_PATH="%USERPROFILE%\Desktop\")
SET SCRIPT="%USERPROFILE%\Repos\standalone_scripts\upload_robot_logs.py"
SET STB_CONF="%USERPROFILE%\Repos\statusdb.yaml"
SET STB_LOG="%USERPROFILE%\Repos\statusdb_uplo... | Change path where error messages are saved on Homer | Change path where error messages are saved on Homer
| Batchfile | apache-2.0 | jgruselius/bravo-protocols |
f2792b8d93b1cd6a1743201a4fd71bbe03e72dd8 | plugin/bin/x-pack/sql-cli.bat | plugin/bin/x-pack/sql-cli.bat | @echo off
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
rem or more contributor license agreements. Licensed under the Elastic License;
rem you may not use this file except in compliance with the Elastic License.
setlocal enabledelayedexpansion
setlocal enableextensions
call "%~dp0... | @echo off
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
rem or more contributor license agreements. Licensed under the Elastic License;
rem you may not use this file except in compliance with the Elastic License.
setlocal enabledelayedexpansion
setlocal enableextensions
call "%~dp0... | Update cli to work on windows | Update cli to work on windows
Original commit: elastic/x-pack-elasticsearch@84f6ba3c1f45f9898c630da5ac3749a541c71f13
| Batchfile | apache-2.0 | GlenRSmith/elasticsearch,uschindler/elasticsearch,HonzaKral/elasticsearch,scorpionvicky/elasticsearch,gingerwizard/elasticsearch,nknize/elasticsearch,nknize/elasticsearch,coding0011/elasticsearch,gfyoung/elasticsearch,gingerwizard/elasticsearch,GlenRSmith/elasticsearch,coding0011/elasticsearch,nknize/elasticsearch,gfyo... |
8d188c9110f7f2a6f9f16f1340d9d254bf583741 | bin/windows/kafka-server-start.bat | bin/windows/kafka-server-start.bat | @echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License... | @echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License... | Fix the server start script for Windows 32-bit OS | KAFKA-4271: Fix the server start script for Windows 32-bit OS
Without this fix the new consumer fails to run on a 32-bit Windows OS.
Author: Vahid Hashemian <vahidhashemian@us.ibm.com>
Reviewers: Jason Gustafson, Guozhang Wang
Closes #2189 from vahidhashemian/KAFKA-4271
| Batchfile | apache-2.0 | ollie314/kafka,sslavic/kafka,eribeiro/kafka,TiVo/kafka,Ishiihara/kafka,rhauch/kafka,gf53520/kafka,apache/kafka,airbnb/kafka,Esquive/kafka,richhaase/kafka,gf53520/kafka,eribeiro/kafka,ijuma/kafka,Chasego/kafka,gf53520/kafka,apache/kafka,rhauch/kafka,eribeiro/kafka,Chasego/kafka,KevinLiLu/kafka,Chasego/kafka,eribeiro/kaf... |
500c1007f136351055ad9c80b0e47928c41a4759 | startStudioWithPlugin.bat | startStudioWithPlugin.bat | SET pathToVS12=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
SET pathToVS11=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe
IF EXIST %pathToVS12%(
"%pathToVS12%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
IF EXIST %pathToVS11%
(
"%pathToVS11%" /RootS... | @echo off
SET pathToVS12=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
SET pathToVS11=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe
IF EXIST %pathToVS12%(
"%pathToVS12%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
IF EXIST %pathToVS11%
(
"%pathToVS... | Edit script that runs studio with plugin | Edit script that runs studio with plugin
| Batchfile | apache-2.0 | Albiglittle/YaccConstructor,fedorovr/YaccConstructor,Albiglittle/YaccConstructor,nbIxMaN/YaccConstructor,fedorovr/YaccConstructor,YaccConstructor/YaccConstructor,nbIxMaN/YaccConstructor,YaccConstructor/YaccConstructor,fedorovr/YaccConstructor,Albiglittle/YaccConstructor,YaccConstructor/YaccConstructor,nbIxMaN/YaccConst... |
29b51d3431be244644d8df68c28f3e4a651dfe34 | scripts/build_project_win.bat | scripts/build_project_win.bat | @echo off
set targetDllPath="%~1\bin\SDL2.dll"
if not exist %targetDllPath% (
echo Copying SDL2.dll to %targetDllPath%
copy SDL2.dll %targetDllPath% || exit /b 1
)
cd /d %1
if not exist build mkdir build
cd build
set slnName="%~2.sln"
set binTargetName="%~2-gamebins"
IF NOT EXIST %slnName% (
cmake -G "Visua... | @echo off
set targetDllDir="%~1\bin"
if not exist %targetDllDir% (
mkdir %targetDllDir%
)
set targetDllPath="%~1\bin\SDL2.dll"
if not exist %targetDllPath% (
echo Copying SDL2.dll to %targetDllPath%
copy SDL2.dll %targetDllPath% || exit /b 1
)
cd /d %1
if not exist build mkdir build
cd build
set slnName=... | Create bin dir if needed | Create bin dir if needed
| Batchfile | apache-2.0 | amzeratul/halley,amzeratul/halley,amzeratul/halley |
e589263af2bf96198fbd6a99efefaed9e177319e | test/runtests.bat | test/runtests.bat | @ECHO OFF
REM create bin directory if it doesn't exist
if not exist ..\bin mkdir ..\bin
REM delete output from previous run
del actual.txt
REM compile the code into the bin folder
javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file... | @ECHO OFF
REM create bin directory if it doesn't exist
if not exist ..\bin mkdir ..\bin
REM delete output from previous run
del actual.txt
REM compile the code into the bin folder
javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file and re... | Remove duplicate javac from test script | Remove duplicate javac from test script
| Batchfile | mit | cheec/addressbook-level2,imhongw/addressbook-level2,cheec/addressbook-level2,zachylimwl/addressbook-level2,imhongw/addressbook-level2,zachylimwl/addressbook-level2,mingruimingrui/addressbook-level2,mingruimingrui/addressbook-level2,se-edu/addressbook-level2,se-edu/addressbook-level2 |
07d0a1fa03d638340f48070e877af795e9c1686c | tool/generate.cmd | tool/generate.cmd | @echo off
echo Generating C-style Win32 APIs and tests
call dart %~dp0win32\generate_ffi_files.dart
call dart %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes
call dart %~dp0generate\generate.dart %~dp0generate\com %~dp0..\lib\src\generated
echo.
echo Generating Windows Runtime classes from IDL
cal... | @echo off
echo Generating C-style Win32 APIs and tests
call dart --enable-experiment=non-nullable %~dp0win32\generate_ffi_files.dart
call dart --enable-experiment=non-nullable %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes
call dart --enable-experiment=non-nullable %~dp0generate\generate.dart %~dp... | Call non-nullable Dart for generators | Call non-nullable Dart for generators
| Batchfile | bsd-3-clause | timsneath/win32,timsneath/win32,timsneath/win32 |
4820563546acc1ef752d16e58994c0423795bf3f | 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/031b8bfe8230279dbd1bff99c33ecd07e373cb87
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | @echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b27b514505b3d85ccb1396ab3dc7ed64d1dfd455
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %count... | Update kudu to use new kuduscript with python3.6 support | Update kudu to use new kuduscript with python3.6 support
| Batchfile | apache-2.0 | EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,EricSten-MSFT/kudu |
e57620e493e6ba9181f139b1ccdc820b0abee7c0 | conda-recipes/ibis-framework/bld.bat | conda-recipes/ibis-framework/bld.bat | "%PYTHON%" setup.py install
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
| "%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
| Fix conda recipe for Windows build | Fix conda recipe for Windows build
Sync Windows build script options with Linux/OS X build script
options. Packages can be tested by running the following on
Windows: ``` conda install -c koverholt ibis-framework ```
Author: Kristopher Overholt <koverholt@gmail.com>
Closes #509 from koverholt/fix/conda-recip... | Batchfile | apache-2.0 | adamobeng/ibis,mahantheshhv/ibis,adamobeng/ibis,Supermem/ibis,wesm/ibis,ibis-project/ibis,wesm/ibis,koverholt/ibis,cloudera/ibis,ashhher3/ibis,laserson/ibis,dboyliao/ibis,glenioborges/ibis,aslihandincer/ibis,ibis-project/ibis,ibis-project/ibis,korotkyn/ibis,koverholt/ibis,aslihandincer/ibis,mariusvniekerk/ibis,gleniobo... |
41ce6d48cf491f881ad803fe95c6dde1266d51e6 | edge-setup/enableConsentEdge.bat | edge-setup/enableConsentEdge.bat | @PowerShell.exe -ExecutionPolicy RemoteSigned -Command "Invoke-Expression -Command ((Get-Content -Path '%~f0' | Select-Object -Skip 2) -join [environment]::NewLine)"
@exit /b %Errorlevel%
#Install scoop
set-executionpolicy unrestricted -s cu -f
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop... | @PowerShell.exe -ExecutionPolicy RemoteSigned -Command "Invoke-Expression -Command ((Get-Content -Path '%~f0' | Select-Object -Skip 2) -join [environment]::NewLine)"
@exit /b %Errorlevel%
#Install scoop
set-executionpolicy unrestricted -s cu -f
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop... | Add Edge restarting once consent enabled | Add Edge restarting once consent enabled
| Batchfile | mit | aullman/opentok-test-scripts,aullman/opentok-test-scripts,aullman/opentok-test-scripts |
fada849257f9c2f2d1389b8f940446138c092899 | scripts/test_native_code.bat | scripts/test_native_code.bat | @echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
powershell C:\projects\spectre\scripts\Up... | @echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
IF %ERRORLEVEL% NEQ 0 (
set /A failures... | Solve problem of non-failing native tests | Solve problem of non-failing native tests
| Batchfile | apache-2.0 | mg6/spectre,spectre-team/spectre,mg6/spectre,spectre-team/spectre,spectre-team/spectre,mg6/spectre |
5d5aa91ab5a8798d43f6a735170beeec48c00178 | conda-recipe/bld.bat | conda-recipe/bld.bat | set CFG=%USERPROFILE%\pydistutils.cfg
echo [config] > "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build_ext] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel... | set CFG=%USERPROFILE%\pydistutils.cfg
echo [config] > "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build_ext] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
"%PYTHON%" -m pip install . --no-deps -vv
if errorlevel 1 exit 1
| Switch all recipes to pip install instead of setup.py install | Switch all recipes to pip install instead of setup.py install
(This has nothing to do with land surface modeling)
| Batchfile | mit | cjcardinale/climlab,cjcardinale/climlab,brian-rose/climlab,brian-rose/climlab,cjcardinale/climlab |
09591082e43d8ecb8d57a5cbf07eec0ef8d19664 | GetAndBuildThis.bat | GetAndBuildThis.bat | setlocal
IF "%1"=="" (
set BUILD_CONFIG="Debug"
) ELSE (
set BUILD_CONFIG=%1
)
REM Presence of a second argument indicates that the caller has already run vsvars32.bat
IF "%2"=="" (
if not "%VS120COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2013 Tools...
@call "%VS120COMNTOOLS%vsvars32.bat"
goto bui... | setlocal
IF "%1"=="" (
set BUILD_CONFIG="Debug"
) ELSE (
set BUILD_CONFIG=%1
)
REM Presence of a second argument indicates that the caller has already run vsvars32.bat
IF "%2"=="" (
if not "%VS120COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2013 Tools...
@call "%VS120COMNTOOLS%vsvars32.bat"
goto bui... | Update GetAndBuild script to match TC Build Step | Update GetAndBuild script to match TC Build Step
| Batchfile | mit | ermshiperete/libpalaso,sillsdev/libpalaso,glasseyes/libpalaso,ddaspit/libpalaso,andrew-polk/libpalaso,ermshiperete/libpalaso,gmartin7/libpalaso,glasseyes/libpalaso,tombogle/libpalaso,tombogle/libpalaso,gmartin7/libpalaso,glasseyes/libpalaso,andrew-polk/libpalaso,tombogle/libpalaso,gmartin7/libpalaso,ddaspit/libpalaso,e... |
dd52da7bd29e6307173a8a82b752e5884f4d6ee2 | js.thirdparty.bat | js.thirdparty.bat | "C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.tablesorter.js ^
--js=jquery/jquery.fl... | "C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.4.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.tablesorter.js ^
--js=jquery/jquery.fl... | Bump versiona nd update third party build to use latest jquery ui we have | Bump versiona nd update third party build to use latest jquery ui we have
| Batchfile | mit | marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy |
1fbf27fb5760f8f69aae4f9de503095dd9cd1abc | rci.bat | rci.bat | :: Copyright (c) 2011, Jon Maken
:: License: 3-clause BSD (see project LICENSE file)
:: Revision: 01/29/2011 10:20:16 AM
@echo off
setlocal
:: echo initial:
:: echo %%0 = %0
:: echo %%* = %*
:: fix ruby.exe invocation when explicitly disabling RubyGems
if "x%1" == "x--disable-gems" (
set NOGEM=%1
for /F "token... | :: Copyright (c) 2011, Jon Maken
:: License: 3-clause BSD (see project LICENSE file)
:: Revision: 01/29/2011 10:20:16 AM
@echo off
setlocal
:: echo initial:
:: echo %%0 = %0
:: echo %%* = %*
:: fix ruby.exe invocation when explicitly disabling RubyGems
if "x%1" == "x--disable-gems" (
set NOGEM=%1
for /F "token... | Add project root dir to $LOAD_PATH. | Add project root dir to $LOAD_PATH.
| Batchfile | bsd-3-clause | jonforums/measurements,jonforums/measurements |
03b2c03454b3d3aedf878e9d2957a6efd2c54b1a | PCbuild/build_ssl.bat | PCbuild/build_ssl.bat | @echo off
if not defined HOST_PYTHON set HOST_PYTHON=python
%HOST_PYTHON% build_ssl.py %1 %2
| @echo off
cd
if not defined HOST_PYTHON set HOST_PYTHON=python
%HOST_PYTHON% build_ssl.py %1 %2
| Add debug output to analyse buildbot failure. | Add debug output to analyse buildbot failure.
| Batchfile | mit | sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator |
acd87b702e0a0d608c41b9e1db08f73f6a336641 | kokoro/gcp_windows/continuous.bat | kokoro/gcp_windows/continuous.bat | @echo on
cd git\SwiftShader
git submodule update --init
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild" SwiftShader.sln
| @echo on
SET PATH=%PATH%;C:\python27
cd git\SwiftShader
git submodule update --init
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild" SwiftShader.sln
| Add Python path to Kokoro batch script | Add Python path to Kokoro batch script
Bug b/123360006
Change-Id: Ie29b1fea3607ad0da2fb48cf3a5248e976c2cf5f
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/27389
Tested-by: Nicolas Capens <51edc787c30f24c4904e8ffbb5523c3a9f7a451d@google.com>
Reviewed-by: Chris Forbes <c3279c50043e18e9442c1ae0... | Batchfile | apache-2.0 | bkaradzic/SwiftShader,bkaradzic/SwiftShader,google/swiftshader,bkaradzic/SwiftShader,bkaradzic/SwiftShader,google/swiftshader,google/swiftshader,bkaradzic/SwiftShader |
39bb2ed0a6a6b64680b23ddd14b140094358367c | teamcity-plugin/Build/build-metarunner.cmd | teamcity-plugin/Build/build-metarunner.cmd |
RMDIR "%~dp0..\Drops" /S /Q
MKDIR "%~dp0..\Drops"
MKDIR "%~dp0..\Drops\Temp"
MKDIR "%~dp0..\Drops\Temp\agent"
MKDIR "%~dp0..\Drops\Temp\agent\bin"
XCOPY /E /Y "%~dp0..\Solutions\*.*" "%~dp0..\Drops\Temp"
XCOPY /E /Y "%~dp0..\..\src\OctopusPuppet.Cmd\bin\Release\*.*" "%~dp0..\Drops\Temp\agent\bin"
DEL "%~dp0..\Drops... |
RMDIR "%~dp0..\Drops" /S /Q
MKDIR "%~dp0..\Drops"
MKDIR "%~dp0..\Drops\Temp"
MKDIR "%~dp0..\Drops\Temp\agent"
MKDIR "%~dp0..\Drops\Temp\agent\bin"
XCOPY /E /Y "%~dp0..\Solutions\*.*" "%~dp0..\Drops\Temp"
XCOPY /E /Y "%~dp0..\..\src\OctopusPuppet.Cmd\bin\Release\*.*" "%~dp0..\Drops\Temp\agent\bin"
DEL "%~dp0..\Drops... | Remove pause as we want to build it from CI agent | Remove pause as we want to build it from CI agent
| Batchfile | apache-2.0 | Aqovia/OctopusPuppet |
b2f01a5de6c34c8dd2770630f14738ffd1b1f6b2 | Build.cmd | Build.cmd | @echo off
cd %~dp0..
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
| @echo off
cd %~dp0
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
pause
| Update build.cmd to not cd up | Update build.cmd to not cd up
| Batchfile | bsd-3-clause | i-e-b/SevenDigital.Messaging |
af056484ac5bffbe5a28837fa6a2bf105c0a601e | bootstrap/src/main/bin/roo.bat | bootstrap/src/main/bin/roo.bat | @echo off
for %%? in ("%~dp0..") do set ROO_HOME=%%~f?
rem echo Resolved ROO_HOME: %ROO_HOME%
java -Djava.ext.dirs=%ROO_HOME%/lib;%ROO_HOME%/dist org.springframework.roo.bootstrap.Bootstrap "classpath:/roo-bootstrap.xml" | @echo off
for %%? in ("%~dp0..") do set ROO_HOME=%%~f?
rem echo Resolved ROO_HOME: %ROO_HOME%
java -Djline.nobell=true -Djava.ext.dirs=%ROO_HOME%/lib;%ROO_HOME%/dist org.springframework.roo.bootstrap.Bootstrap "classpath:/roo-bootstrap.xml" | Stop beep noise on Windows machines via Roo shell | ROO-110: Stop beep noise on Windows machines via Roo shell
| Batchfile | apache-2.0 | rwl/requestfactory-addon |
9c281f575f7116580d7b8d80651038712b92a1a3 | BUILD.cmd | BUILD.cmd | @echo off
REM I didn't use the if (...) else (...) form because when the environment variable
REM is expanded, the ")" in the directory name seems to be interpreted by the IF command.
if not "%ProgramFiles(x86)%"=="" set ProgramFiles32Bit=%ProgramFiles(x86)%
if "%ProgramFiles(x86)%"=="" set ProgramFiles32Bit=%ProgramFi... | @echo off
SetLocal ENABLEDELAYEDEXPANSION
echo.Building the TTR Mouse Click Simulator...
echo.
REM MSBuild is always installed in the 32-Bit program files folder
if "!ProgramFiles(x86)!"=="" (
set "ProgramFiles32Bit=!ProgramFiles!"
) else (
set "ProgramFiles32Bit=!ProgramFiles(x86)!"
)
set "BuildExe=!ProgramFiles32Bi... | Update the build script to use delayed environment variable expansion and instruct MSBuild to use a less verbose output. | Update the build script to use delayed environment variable expansion and instruct MSBuild to use a less verbose output.
| Batchfile | mit | TTExtensions/MouseClickSimulator |
4fe2173c3cc7f5bdea0f597c31c9295869237cc9 | build.cmd | build.cmd | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
IF EXIST %CACHED_NUGET% goto restore
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command ... | @ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET VS2015_BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %VS2015_BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 Preview ... | Add a helpful message when tools are missing | Add a helpful message when tools are missing
While you can build the unit tests and run them without Visual Studio
2015 (or the build tools) installed, you need to have it installed to
run the program or build.cmd. Generate a helpful error when these
are missing.
| Batchfile | mit | BertTank/codeformatter,rollie42/codeformatter,srivatsn/codeformatter,hickford/codeformatter,mmitche/codeformatter,shiftkey/codeformatter,BradBarnich/codeformatter,twsouthwick/codeformatter,jaredpar/codeformatter,dotnet/codeformatter,twsouthwick/codeformatter,david-mitchell/codeformatter,jeremyabbott/codeformatter,dotne... |
acf3570ebeb734805e1c66a0f138d7d761a2625d | acqEngine/build.bat | acqEngine/build.bat | if exist classes rmdir classes /s /q
if exist build rmdir build /s /q
mkdir classes
mkdir build
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4... | if exist classes rmdir classes /s /q
if exist build rmdir build /s /q
mkdir classes
mkdir build
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4... | Bring back AOT compiling for acquisition engine | Bring back AOT compiling for acquisition engine
git-svn-id: 03a8048b5ee8463be5048a3801110fb50f378627@11162 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
| Batchfile | mit | kmdouglass/Micro-Manager,kmdouglass/Micro-Manager |
f590957e22fdeb0314d1e93544f34b4926493e26 | pack.bat | pack.bat | .nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Library.csproj
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Mvc.csproj
| .nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Library.csproj
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages MVC\Mvc.csproj
| Fix paths in build script | Fix paths in build script
| Batchfile | bsd-2-clause | mios-fi/mios.validation |
801b556996e00b75d27d4a39983f12799fb0ed5a | scripts/slave/drmemory/build_env.bat | scripts/slave/drmemory/build_env.bat | :: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual S... | :: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual S... | Add 7z.exe to PATH for drmemory build environment | Add 7z.exe to PATH for drmemory build environment
TBR=nsylvain@chromium.org
BUG=154895
Review URL: https://codereview.chromium.org/11196005
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@162207 0039d316-1c4b-4281-b951-d872f2087c98
| Batchfile | bsd-3-clause | eunchong/build,eunchong/build,eunchong/build,eunchong/build |
94ff617da4a2ec1da31d81d82333a6fe5815e5ee | build.bat | build.bat | set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%versio... | set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%versio... | Fix missing files in release ZIP didn't work, will do this later... | Fix missing files in release ZIP didn't work, will do this later...
| Batchfile | mit | berrnd/shareical,berrnd/shareical |
abc531e74e74bb1ade54832a2126f4b326f19efb | build.cmd | build.cmd | @echo off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=0.1.2.1
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=src\.nuget\nuget.exe
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\Nancy.ReSharper.Plugin.sln /t:Rebuil... | @echo off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=0.1.2.2-EAP-20131112
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=src\.nuget\nuget.exe
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\Nancy.ReSharper.Plugin.... | Mark package as pre-release until 8.1 is released | Mark package as pre-release until 8.1 is released
| Batchfile | mit | NancyFx/Nancy.ReSharper,hmemcpy/Nancy.ReSharper,NancyFx/Nancy.ReSharper |
78232017864df06a6648809bdf1bcce5e1954e51 | jenkins/windows_c.cmd | jenkins/windows_c.cmd | @REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all... | @REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all... | Modify to build WebSockets 32-bit | Modify to build WebSockets 32-bit
| Batchfile | mit | kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sd... |
23c7701c1fab401a45f707c9abac101c6be9ce56 | build.bat | build.bat | @mkdir _shake 2> nul
@ghc --make Main.hs -rtsopts -with-rtsopts=-I0 -outputdir=_shake -o _shake/build && _shake\build --lint --directory ".." %*
| @mkdir _shake 2> nul
@ghc --make src/Main.hs -isrc -rtsopts -with-rtsopts=-I0 -outputdir=_shake -o _shake/build && _shake\build --lint --directory ".." %*
| Fix paths to source files. | Fix paths to source files.
| Batchfile | bsd-3-clause | snowleopard/hadrian,sdiehl/ghc,sdiehl/ghc,quchen/shaking-up-ghc,bgamari/shaking-up-ghc,sdiehl/ghc,snowleopard/shaking-up-ghc,sdiehl/ghc,izgzhen/hadrian,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc |
33e6b9b8b9c8bcb14ff1a07cd30c037c88dc7f6e | Start.bat | Start.bat | Rem This batch file will run the Ring Notepad Application.
Rem Ring Notepad is just a sample about what we can do using Ring in little hours.
Rem Using Ring Notepad we can write and execute Ring programs quickly.
Rem Author : Mahmoud Fayed <msfclipper@yahoo.com>
echo off
cls
cd applications
cd rnote
"../../bin/ring.e... | Rem This batch file will run the Ring Notepad Application.
Rem Ring Notepad is just a sample about what we can do using Ring in little hours.
Rem Using Ring Notepad we can write and execute Ring programs quickly.
Rem Author : Mahmoud Fayed <msfclipper@yahoo.com>
echo off
cls
cd applications
cd rnote
start ../../bin/r... | Update start.bar - Using ringw.exe instead of ring.exe to run the Ring Notepad - To hide the console window. | Update start.bar - Using ringw.exe instead of ring.exe to run the Ring Notepad - To hide the console window.
| Batchfile | mit | ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring |
c728c91227436f09b6f921d7922500777453dfcc | build.cmd | build.cmd | mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule
csc /t:library /debug:pdbonly /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs
csc /debug:pdbonly /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
| mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.Core.netmodule
csc /t:module /debug:pdbonly /unsafe /o+ /addmodule:bin\System.Slice.Core.netmodule /out:bin\System.Slice.netmodule src\*.cs
link /dll /out:bin\System.Slice.dll bin\System.Slice.Core.netmodule bin\System.Slice.netmodule
csc /debug:pdbonly /... | Use link to create a single dll. | Use link to create a single dll.
Gets rid of the netmodule, specifically.
| Batchfile | mit | kurtschelfthout/slice.net |
3e894400c16ca67636bb2a388bb77d49c2932100 | build.cmd | build.cmd | @echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
exit /b 1
... | @echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
exit /b 1
... | Build script error propagation fix | Build script error propagation fix
| Batchfile | apache-2.0 | atifaziz/NCrontab,atifaziz/NCrontab |
73b35e4caee1b1ee031bf84398b4679dd8f29080 | build.bat | build.bat | @echo off
if not exist mercury-x64 mkdir mercury-x64
pushd mercury-x64
set CommonCompilerFlags=-Od -I.. -I..\glfw-3.1.1\include -MTd -fp:fast -fp:except- -Gm- -GR- -EHa- -Oi -W4
set CommonLinkerFlags= -incremental:no -opt:ref user32.lib gdi32.lib winmm.lib glfw3dll.lib opengl32.lib -libpath:..\glfw-x64\src\Release
c... | @echo off
if not exist mercury-x64 mkdir mercury-x64
pushd mercury-x64
set CommonCompilerFlags=-nologo -Od -I.. -I..\glfw-3.1.1\include -MTd -fp:fast -fp:except- -Gm- -GR- -EHa- -Oi -W4 -WX -wd4201 -wd4100 -wd4189 -wd4505 -wd4127
set CommonLinkerFlags= -incremental:no -opt:ref user32.lib gdi32.lib winmm.lib glfw3dll.... | Add trivial warnings to ignore list | Add trivial warnings to ignore list
| Batchfile | mit | darkedge/mercury,darkedge/mercury,darkedge/mercury,darkedge/mercury |
f0ee110a125253c084e2932e9d75ad423de8226e | build.cmd | build.cmd | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Frame... | @ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Frame... | Rename Zafir packages to WebSharper | Rename Zafir packages to WebSharper
| Batchfile | apache-2.0 | intellifactory/websharper.google.maps |
0a6eb7fac4d16577abf49410ba7111ddbac6b6ae | recipes/ldc/bld.bat | recipes/ldc/bld.bat | dir
7za x lts\ldc2-1.9.0-windows-x64.7z -o%SRC_DIR%\lts
mkdir build
cd build
cmake -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DBUILD_SHARED_LIBS=ON ^
-DD_COMPILER=%SRC_DIR%\lts\ldc2-1.9.0-windows-x64\bin\ldmd2... | dir
7za x lts\ldc2-1.9.0-windows-x64.7z -o%SRC_DIR%\lts
mkdir build
cd build
cmake -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DD_COMPILER=%SRC_DIR%\lts\ldc2-1.9.0-windows-x64\bin\ldmd2.exe ^
..
ninja install
l... | Remove build shared libs as it is not supported | Remove build shared libs as it is not supported
| Batchfile | bsd-3-clause | stuertz/staged-recipes,rmcgibbo/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,cpaulik/staged-recipes,goanpeca/staged-recipes,guillochon/staged-recipes,shadowwalkersb/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,synapti... |
2a6cf4dff59bd7461d3bc028636edc1e1ed54676 | sdk-build-tools/build-packages-teamcity.cmd | sdk-build-tools/build-packages-teamcity.cmd | @ECHO OFF
REM TeamCity chokes on the COMPONENTSVERSION processing here, it thinks
REM COMPONENTSVERSION is required going into the build step when we would
REM define it in the build step.
SETLOCAL
REM ---------------------------------------------------------------------------
REM Check usage
REM -------------------... | @ECHO OFF
REM TeamCity chokes on the COMPONENTS_VERSION processing here, it thinks
REM COMPONENTS_VERSION is required going into the build step when we would
REM define it in the build step.
SETLOCAL
REM ---------------------------------------------------------------------------
REM Check usage
REM -----------------... | Debug output for the build | Debug output for the build
| Batchfile | mit | SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk |
55ebc4fb6f99769a8bf70d8e38ada42b10d754a1 | 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 DbServer in background but within the same context
start "OpenQuake DB server" /B python.ex... | @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... | Use new webui start command on Win and check status before opening the browser | Use new webui start command on Win and check status before opening the browser
| Batchfile | agpl-3.0 | gem/oq-nsis,gem/oq-installers,gem/oq-installers |
ac742a646831d7295d15a6082db2c1f7bc51917e | bin/stree.cmd | bin/stree.cmd | @echo off
setlocal enabledelayedexpansion
set directory=%~f1
if [%directory%] == [] set directory=%CD%
if exist %directory%\NUL (
set directory=%directory%
) else (
set directory=%~dp1
)
pushd %directory%
for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i
git rev-parse --show-to... | @echo off
setlocal enabledelayedexpansion
set directory=%~f1
if [%directory%] == [] set directory=%CD%
if exist %directory%\NUL (
set directory=%directory%
) else (
set directory=%~dp1
)
pushd %directory%
for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i
git rev-parse --show-to... | Replace forward slashes with back slashes | Replace forward slashes with back slashes
| Batchfile | mit | ArloL/dotfiles,ArloL/dotfiles |
2f27374218e99e4dd8439fa70dafaa0e923c4a23 | example/msvcbuild.bat | example/msvcbuild.bat | cd ..\src
call msvcbuild.bat static
cd ..\ext\re
call msvcbuild.bat
cd ..\..\ext\tsx
call msvcbuild.bat
cd ..\..\sample
@setlocal
@set SCHEME_H_DIR=..\src
@set MSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_WARNINGS /I%SCHEME_H_DIR%
@set MSLINK=link /nologo
@set EXT_LIBS=..\ext\re\lib\re.lib ..\ext\t... | cd ..\src
call msvcbuild.bat static
cd ..\ext\re
call msvcbuild.bat
cd ..\..\ext\tsx
call msvcbuild.bat
cd ..\..\example
@setlocal
@set SCHEME_H_DIR=..\src
@set MSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_WARNINGS /I%SCHEME_H_DIR%
@set MSLINK=link /nologo
@set EXT_LIBS=..\ext\re\lib\re.lib ..\ext\... | Fix typo in example's bat | Fix typo in example's bat
| Batchfile | mit | ignorabimus/minischeme,ignorabimus/minischeme |
9d815c1e2acfb957d7a68d5c1956aab4150bc0c8 | windows-install/win64/pack_github.bat | windows-install/win64/pack_github.bat | cd build
md output
copy *.exe output
copy "c:\vcpkg\installed\x64-windows\bin\sqlite3.dll" output
cd output
windeployqt codequery.exe
dir/b/a/s
candle.exe -ext WixUIExtension -ext WixUtilExtension "..\..\windows-install\win64\codequery64.wxs"
light.exe -ext WixUIExtension -ext WixUtilExtension codequery64.wixob... | set PATH=%PATH%;"%WIX%\bin"
cd build
md output
copy *.exe output
copy "c:\vcpkg\installed\x64-windows\bin\sqlite3.dll" output
cd output
windeployqt codequery.exe
dir/b/a/s
candle.exe -ext WixUIExtension -ext WixUtilExtension "..\..\windows-install\win64\codequery64.wxs"
light.exe -ext WixUIExtension -ext WixUt... | Add Wix to env GHA | Add Wix to env GHA
| Batchfile | mpl-2.0 | ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery |
e44c28029739162e9e5c0ab76f1931cce91b24be | builds/msvc/build/buildall.bat | builds/msvc/build/buildall.bat | @ECHO OFF
ECHO.
ECHO Downloading Libbitcoin Explorer dependencies from NuGet
CALL nuget.exe install ..\vs2013\bitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer-test\packages.config
ECHO.
CALL buildbase.bat ..\vs2013... | @ECHO OFF
ECHO.
ECHO Downloading Libbitcoin Explorer dependencies from NuGet
CALL nuget.exe install ..\vs2013\bx\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer-test\packages.config
ECHO.
CALL buildbase.bat ..\vs2013\libbitcoin-ex... | Update bx path for nuget refresh. | Update bx path for nuget refresh.
| Batchfile | agpl-3.0 | libtetcoin/libtetcoin-explorer,cancoin/libbitcoin-explorer,libmetrocoin/libmetrocoin-explorer,libmetrocoin/libmetrocoin-explorer,cancoin/libbitcoin-explorer,GroestlCoin/libgroestlcoin-explorer,libtetcoin/libtetcoin-explorer,tuomassiren/libbitcoin-explorer,tuomassiren/libbitcoin-explorer,GroestlCoin/libgroestlcoin-explo... |
0bdbc6685ca1dd1844f442bf3caa02d65651ce06 | scripts/windows/input/reprounzip-qt.bat | scripts/windows/input/reprounzip-qt.bat | @echo off
"%~dp0\python2.7\Scripts\reprounzip-qt.exe" %*
| @echo off
set PATH=%~dp0;%PATH%
"%~dp0\python2.7\Scripts\reprounzip-qt.exe" %*
| Fix GUI not finding reprounzip on Windows | Fix GUI not finding reprounzip on Windows
If running the GUI on Windows after installing from the installer, and
opening a package by double-clicking (not browsing from the app), the
GUI would fail with a "Couldn't find reprounzip command" message.
| Batchfile | bsd-3-clause | ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip |
3b7ac3da76c8a883a48938bf9505b7b27a851a8c | src/scripts/ci/setup_appveyor.bat | src/scripts/ci/setup_appveyor.bat |
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFil... |
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
if %MSVS%... | Remove VC2013 support from AppVeyor script | Remove VC2013 support from AppVeyor script
| Batchfile | bsd-2-clause | randombit/botan,randombit/botan,webmaster128/botan,randombit/botan,randombit/botan,webmaster128/botan,webmaster128/botan,randombit/botan,webmaster128/botan,webmaster128/botan |
46d8789b6162a9792e871434d57332dba7134d68 | clean.cmd | clean.cmd | @echo off
pushd "%~dp0"
for %%i in (Debug Release) do "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild" /target:Clean /p:Configuration=%%i src\NCrontab.sln
popd
| @"%~dp0build" /v:n /target:Clean
| Clean script can simply delegate to build script | Clean script can simply delegate to build script
| Batchfile | apache-2.0 | petlof/ncrontab,vasiliy-vdovichenko/ncrontab,youniss2013/ncrontab,rog1039/ncrontab,amitapl/ncrontab,paulgmiller/ncrontab,bjorskog/ncrontab,paulgmiller/ncrontab,IntranetFactory/ncrontab,xingh/ncrontab,IntranetFactory/ncrontab,cyotek/ncrontab,klunwebale/ncrontab,xingh/ncrontab,joshberry/ncrontab,micheltol/ncrontab,devnar... |
405a9c4f2da4755b1e3f7158947d497595b72564 | tools/release_win.bat | tools/release_win.bat | PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
| Add Program Files\7-Zip to path | Add Program Files\7-Zip to path
| Batchfile | apache-2.0 | catap/namebench,jimmsta/namebench-1 |
d8efe3b82f2edf173d38dc311afc7d41a9b63d55 | packer/vagrant/scripts/windows/build-tools.bat | packer/vagrant/scripts/windows/build-tools.bat | if not exist "C:\Windows\Temp\build-tools.exe" (
powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12; (New-Object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe', 'C:\Win... | if not exist "C:\Windows\Temp\build-tools.exe" (
powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12; (New-Object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe', 'C:\Win... | Fix path update to not include trailing backslash | Fix path update to not include trailing backslash
| Batchfile | mit | chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagra... |
0eab576026de6baa9b87dd7b56093c07bdc4273e | Scripts/BuildGame.bat | Scripts/BuildGame.bat | @echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Development
rem =======================================================
rem Release variables
rem ==========================================... | @echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Development
rem =======================================================
rem Release variables
rem ==========================================... | Upgrade build script to include en-EN, fr-FR cultures | Upgrade build script to include en-EN, fr-FR cultures
| Batchfile | bsd-3-clause | arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain |
6d60d6d961f7f523d4ef03287a38a12597bfc2b7 | mkDistribution.bat | mkDistribution.bat | @echo "mkDistribution v1.3"
if exist current (
rmdir /s /q current
)
mkdir current
mkdir current\netcf-10
nant -t:netcf-1.0 -D:build.output.dir=current\netcf-10 -buildfile:sharpZLib.build build
mkdir current\netcf-20
nant -t:netcf-2.0 -D:build.output.dir=current\netcf-20 -buildfile:sharpZLib.build build
mkdir cur... | @echo "mkDistribution v1.4"
if exist current (
rmdir /s /q current
)
mkdir current
mkdir current\netcf-10
nant -t:netcf-1.0 -D:build.output.dir=current\netcf-10 -buildfile:sharpZLib.build build
mkdir current\netcf-20
nant -t:netcf-2.0 -D:build.output.dir=current\netcf-20 -buildfile:sharpZLib.build build
mkdir cur... | Build help file before copying it! | Build help file before copying it!
| Batchfile | mit | McNeight/SharpZipLib |
d320fd5ce9878a0b62eae42e9964a8f7d6561d54 | perl/08-pack.cmd | perl/08-pack.cmd | @echo off
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
CSS-Sass-%RELVERSION%/bin/psass
cd ..\..
REM tested... | @echo off
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
CSS-Sass-%RELVERSION%/bin/psass
... | Add missing perl dependency for packer | Add missing perl dependency for packer
| Batchfile | mit | mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer |
f438217234a0020a61499c0977d604c705e5db86 | floppy/disablewinupdate.bat | floppy/disablewinupdate.bat | <!-- :
@echo off
echo ==^> Enabling updates for other products from Microsoft Update
net stop wuauserv
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v EnableFeaturedSoftware /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\W... | <!-- :
@echo off
echo ==^> Enabling updates for other products from Microsoft Update
net stop wuauserv
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v EnableFeaturedSoftware /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\W... | Disable updates on Windows 2008 R2 and Windows 7 | Disable updates on Windows 2008 R2 and Windows 7
| Batchfile | apache-2.0 | boxcutter/windows,HirotakaKato/boxcutter-windows-ja,samepage-labs/windows-templates,TaylorMonacelli/boxcutter-windows,TaylorMonacelli/boxcutter-windows,MSumulong/windows,MSumulong/windows,ambakshi/windows,samepage-labs/windows-templates,quarkslab/windows,StefanScherer/windows,c-owens/windows,MYOB-Technology/packer-sqls... |
0c531a17ab71812eaecb03de7c1b8c3ffadcaaae | alltests.cmd | alltests.cmd | call \ned\bin\switchpy 23
python setup.py develop
nosetests
call \ned\bin\switchpy 24
python setup.py develop
nosetests
call \ned\bin\switchpy 25
python setup.py develop
nosetests
call \ned\bin\switchpy 26
python setup.py develop
nosetests
| call \ned\bin\switchpy 23
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy 24
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy 25
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy ... | Test the code without a C extension. | Test the code without a C extension.
| Batchfile | apache-2.0 | blueyed/coveragepy,jayhetee/coveragepy,nedbat/coveragepy,blueyed/coveragepy,7WebPages/coveragepy,hugovk/coveragepy,jayhetee/coveragepy,larsbutler/coveragepy,blueyed/coveragepy,7WebPages/coveragepy,hugovk/coveragepy,blueyed/coveragepy,larsbutler/coveragepy,larsbutler/coveragepy,nedbat/coveragepy,nedbat/coveragepy,hugovk... |
21080c5e76237bb792520564514ee7a8e45d2db4 | bin/vibe.cmd | bin/vibe.cmd | rem @echo off
set VIBE_BIN=%~dps0
set LIBDIR=%VIBE_BIN%..\lib\win-i386
set BINDIR=%VIBE_BIN%..\lib\bin
set LIBS="%LIBDIR%\event2.lib" "%LIBDIR%\eay.lib" "%LIBDIR%\ssl.lib" ws2_32.lib
set EXEDIR=%TEMP%\.rdmd\source
set START_SCRIPT=%EXEDIR%\vibe.cmd
if NOT EXIST %EXEDIR% (
mkdir %EXEDIR%
)
copy "%VIBE_BIN%*.dll" %EXED... | @echo off
set VIBE_BIN=%~dps0
set LIBDIR=%VIBE_BIN%..\lib\win-i386
set BINDIR=%VIBE_BIN%..\lib\bin
set LIBS="%LIBDIR%\event2.lib" "%LIBDIR%\eay.lib" "%LIBDIR%\ssl.lib" ws2_32.lib
set EXEDIR=%TEMP%\.rdmd\source
set START_SCRIPT=%EXEDIR%\vibe.cmd
if NOT EXIST %EXEDIR% (
mkdir %EXEDIR%
)
copy "%VIBE_BIN%*.dll" %EXEDIR% ... | Put back the @echo off.. | Put back the @echo off..
| Batchfile | mit | yannick/vibe.d,dkillebrew/vibe.d,mfrischknecht/vibe.d,chalucha/vibe.d,Yoplitein/vibe.d,veelo/vibe.d,Geod24/vibe.d,1100110/vibe.d,Kozzi11/vibe.d,cybevnm/vibe.d,Yoplitein/vibe.d,ColdenCullen/vibe.d,jkm/vibe.d,sigod/vibe.d,AndreyMZ/vibe.d,Yoplitein/vibe.d,alphaKAI/vibe.d,brianloveJesus/vibe.d,alphaKAI/vibe.d,etcimon/vibe.... |
a57a277d1b100d7f4c7198061763613969fbd4b3 | bin/cake.bat | bin/cake.bat | ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Cake is a Windows batch script for invoking CakePHP shell commands
::
:: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
:: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
::
:: Licensed under ... | ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Cake is a Windows batch script for invoking CakePHP shell commands
::
:: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
:: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
::
:: Licensed under ... | Remove an empty line output | Remove an empty line output
Prevent to output an empty line before the XML declaration when a command is run using `--xml` option | Batchfile | mit | QoboLtd/project-template-cakephp,makallio85/fish-diary,makallio85/fish-diary,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,makallio85/fish-diary |
f0d4fccdc2fd7d89c7d7cdeac350faa384652bc5 | build_tools/jenkins_win_build.bat | build_tools/jenkins_win_build.bat |
set PYTHON=C:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=C:\Python27;C:\Python27\Scripts;C:\mingw\bin;%PATH%
cd %WORKSPACE%
%PYTHON% check_packages.py
cd %WORKSPACE%
python setup.py build -cmingw32
cd %WORKSPACE%
python... |
set PYTHON=C:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=C:\Python27;C:\Python27\Scripts;C:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
cd %WORKSPACE%
%PYTHON% check_packages.py
cd %WORKSPACE%
python setup.py bu... | Update new windows build script | Update new windows build script
| Batchfile | bsd-3-clause | lewisodriscoll/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,SasView/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview |
cd5e6df04f580851b4a0699c1f9136168639ed55 | windows/env.bat | windows/env.bat | :: Copyright 2015 Rouslan Solomakhin
::
:: 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... | :: Copyright 2015 Rouslan Solomakhin
::
:: 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... | Add maven path on windows. | Add maven path on windows.
| Batchfile | apache-2.0 | rsolomakhin/dotfiles |
cefb1557258add38bb75e6d7e02985ca38a3c9e9 | recipes/genesis2/bld.bat | recipes/genesis2/bld.bat | copy mpi.f.single mpi.f
copy mpif.h.single mpif.h
if errorlevel 1 exit 1
flang -g -w -O -Wall -o genesis2 main.f check.f diagno.f esource.f field.f incoherent.f math.f partsim.f pushp.f loadbeam.f loadrad.f magfield.f tdepend.f track.f string.f rpos.f scan.f source.f stepz.f timerec.f initrun.f input.f output.f mpi.... | copy mpi.f.single mpi.f
copy mpif.h.single mpif.h
if errorlevel 1 exit 1
flang -g -w -O -Wall -o genesis2 main.f check.f diagno.f esource.f field.f incoherent.f math.f partsim.f pushp.f loadbeam.f loadrad.f magfield.f tdepend.f track.f string.f rpos.f scan.f source.f stepz.f timerec.f initrun.f input.f output.f mpi.... | Remove errorlevel 1 after compile to be able to print the errors. | Remove errorlevel 1 after compile to be able to print the errors.
| Batchfile | bsd-3-clause | goanpeca/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,SylvainCorlay/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-re... |
0a07f8614808073692779108c5c4955167070cab | BUILD.cmd | BUILD.cmd | @echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
REM Change the working directory to the script's director... | @echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
REM Change the working directory to the script's director... | Use quotation marks for path parameters. | Follow-Up: Use quotation marks for path parameters.
| Batchfile | mit | TTExtensions/MouseClickSimulator |
ae63ff601f0d7902a8c6c988ba333180c1f6c45f | ui/build.bat | ui/build.bat | @echo off
mkdir public\compiled
set ts_apps=common chess ceval game tree
for %%t in (%ts_apps%) do @(
call echo Building TypeScript: %%t
call cd ui\%%t
call yarn install --non-interactive
call yarn run compile --non-interactive
call cd ..\..
)
set apps=site chat challenge notify learn insight edito... | @echo off
mkdir public\compiled
set ts_apps=common chess ceval game tree
for %%t in (%ts_apps%) do @(
call echo Building TypeScript: %%t
call cd ui\%%t
call yarn install --non-interactive
call yarn run compile --non-interactive
call cd ..\..
)
set apps=site chat challenge notify learn insight ed... | Replace a tab with 4 spaces | Replace a tab with 4 spaces
| Batchfile | agpl-3.0 | luanlv/lila,luanlv/lila,arex1337/lila,arex1337/lila,arex1337/lila,luanlv/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila |
2ab010891bbf6539c20f5a2aee6b93a77fc19af1 | bin/hubot.cmd | bin/hubot.cmd | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" = "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if "... | @echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" == "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if ... | Fix the condition to compare strings in the script on Windows. | Fix the condition to compare strings in the script on Windows.
| Batchfile | mit | lisb/daab-starter,lisb/daab-starter,lisb/daab-starter |
f09aed595e780aeb8ab2fdf2bfb698727f7e2d3b | recipes/openmeeg/bld.bat | recipes/openmeeg/bld.bat | set CMAKE_CONFIG=Release
mkdir build_%CMAKE_CONFIG%
pushd build_%CMAKE_CONFIG%
cmake -G "NMake Makefiles" ^
-DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^
-DBLA_VENDOR:STRING=OpenBLAS ^
-DENABLE_PYTHON:BOOL=ON ^
-DBUILD_DOCUM... | set CMAKE_CONFIG=Release
mkdir build_%CMAKE_CONFIG%
pushd build_%CMAKE_CONFIG%
cmake -G "NMake Makefiles" ^
-DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^
-DBLA_VENDOR:STRING=OpenBLAS ^
-DENABLE_PYTHON:BOOL=ON ^
-DCMAKE_INSTA... | Set install prefix in windows | Set install prefix in windows
| Batchfile | bsd-3-clause | mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,barkls/staged-recipes,basnijholt/staged-recipes,ceholden/staged-recipes,ceholden/staged-reci... |
f55d7c37bbb4f9bc061866a17c30868efb97b131 | Build.bat | Build.bat | SETLOCAL
SET Version=2.5.0
SET Prerelease=auto
@SET Config=%1%
@IF [%1] == [] SET Config=Debug
IF NOT DEFINED VisualStudioVersion CALL "%VS140COMNTOOLS%VsDevCmd.bat" || ECHO ERROR: Cannot find Visual Studio 2015, missing VS140COMNTOOLS variable. && GOTO Error0
@ECHO ON
REM Updating the version of all proje... | SETLOCAL
SET Version=2.5.0
SET Prerelease=auto
@SET Config=%1%
@IF [%1] == [] SET Config=Debug
IF NOT DEFINED VisualStudioVersion CALL "%VS140COMNTOOLS%VsDevCmd.bat" || ECHO ERROR: Cannot find Visual Studio 2015, missing VS140COMNTOOLS variable. && GOTO Error0
@ECHO ON
REM Updating the version of all proje... | Set Powershell ExecutionPolicy for build. | Set Powershell ExecutionPolicy for build.
| Batchfile | agpl-3.0 | bantolov/Rhetos,kmeze/Rhetos |
a5f44738f90d9e07723d9f9699eaf089ad4880da | test/deploy.bat | test/deploy.bat | mkdir mage
composer install
rem Actions after deploy (database creation, files copy, etc)
copy ..\src\app\etc\nmmlm mage\app\etc | mkdir mage
composer install
rem Actions after deploy (database creation, files copy, etc)
xcopy ..\src\app\etc\nmmlm mage\app\etc\nmmlm /E /Y /I | Deploy script changed from copy to xcopy | Deploy script changed from copy to xcopy | Batchfile | mit | praxigento/mage_ext_log4php |
38dac057a18fd66c4c741b7cb57f05b911ffcfcf | build.bat | build.bat | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Bot.Messenger.sln /p:Configuration="%conf... | @echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%programfiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe Bot.Messenger.sln /p:Configuration="%config%" /m /v:M /fl /f... | Build commant updated to target MSBuild\14.0 | Build commant updated to target MSBuild\14.0
| Batchfile | mit | olisamaduka/Bot.Messenger |
a0e44ef32b35b6be70b0efa56d2e7a5fc9b8297b | build.cmd | build.cmd | @ECHO OFF
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" /nologo ... | @ECHO OFF
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successfully delete the task
:: assembly.
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" /nologo... | Replace individual parameters with wildcard | Replace individual parameters with wildcard
It's not that we ever want to pass more than ten arguments; it's about
the fact that we'd like to be able to pass arguments like this:
.\build.cmd /p:OutDir='D:\test\'
Using individual arguments, MSBuild is called like this:
MSBuild.exe /p:OutDir D:\test\
That's ... | Batchfile | mit | terrajobst/nquery-vnext |
13d18b4b2857f668c1651c6ab011ca7b434be096 | BuildPackage/BuildOne.bat | BuildPackage/BuildOne.bat | @ECHO OFF
ECHO.
ECHO ===============================================================
ECHO.
ECHO Building: %1
ECHO.
ECHO ===============================================================
ECHO.
Call "C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" %1 /p:Configuration=Release /p:PostBuildEvent=
| @ECHO OFF
ECHO.
ECHO ===============================================================
ECHO.
ECHO Building: %1
ECHO.
ECHO ===============================================================
ECHO.
Call "C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" %1 /p:Configuration=Release /consoleloggerparameters:Summary;ErrorsOnl... | Build Parameters (less logging in console) | Build Parameters (less logging in console)
Just turn the logging down for the build
| Batchfile | mpl-2.0 | Vrijdagonline/uSync,lucasch/uSync,Vrijdagonline/uSync,lucasch/uSync,Vrijdagonline/uSync,lucasch/uSync |
86c72bcbcfc9a6a25734262e383e288c9e4372c8 | src/DiffEngine/inst64.bat | src/DiffEngine/inst64.bat | call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
nmake
dir WIN2000_DEBUG\*.exe
copy WIN2000_DEBUG\*.exe ..\Bin\
pause
| call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
nmake nodebug=1
dir WIN2000_DEBUG\*.exe
copy WIN2000_DEBUG\*.exe ..\Bin\
pause
| Use RETAIL mode for Python Library Issues | Use RETAIL mode for Python Library Issues
| Batchfile | bsd-3-clause | jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim |
b0fd6ba0e619d6d4fd0498f732c303aeaad2c062 | webkit/build/JSConfig/prebuild.bat | webkit/build/JSConfig/prebuild.bat | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x ... | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
:: Fix cp.exe on vista: without this flag, the files that it creates are not accessible.
set CYGWIN=nontsec
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\s... | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security on top of NTFS. | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security
on top of NTFS.
BUG=1157117
git-svn-id: http://src.chromium.org/svn/trunk/src@40 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Former-commit-id: 3f3a345fa4a4849ac50b16979cde53f6dd26d163 | Batchfile | bsd-3-clause | meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-u... |
5c0ea803d6583da54cc30a30e472a1c50accbe1c | tools/rails/bin/jruby.bat | tools/rails/bin/jruby.bat | @ECHO OFF
set GO_ROOT=%~dp0\..\..\..
set JRUBY_BASE=%GO_ROOT%\tools\jruby-1.7.11
set SERVER_ROOT=%GO_ROOT%\server
set RAILS_ROOT=%SERVER_ROOT%\webapp\WEB-INF\rails.new
set GEM_HOME=%RAILS_ROOT%\vendor\bundle\jruby\1.9
set GEM_PATH=%JRUBY_BASE%\lib\ruby\gems\shared;%GEM_HOME%
set PATH=%JRUBY_BASE%\bin;%PATH%
set JRUBY_... | @ECHO OFF
set GO_ROOT=%~dp0\..\..\..
set JRUBY_BASE=%GO_ROOT%\tools\jruby-1.7.11
set SERVER_ROOT=%GO_ROOT%\server
set RAILS_ROOT=%SERVER_ROOT%\webapp\WEB-INF\rails.new
set GEM_HOME=%RAILS_ROOT%\vendor\bundle\jruby\1.9
set GEM_PATH=%JRUBY_BASE%\lib\ruby\gems\shared;%GEM_HOME%
set PATH=%JRUBY_BASE%\bin;%PATH%
set JRUBY_... | Append to JRUBY_OPTS instead of overriding it | Append to JRUBY_OPTS instead of overriding it
| Batchfile | apache-2.0 | tomzo/gocd,tomzo/gocd,arvindsv/gocd,ibnc/gocd,aj-jaswanth/gocd,stevem999/gocd,stevem999/gocd,MFAnderson/gocd,varshavaradarajan/gocd,marques-work/gocd,Skarlso/gocd,jyotisingh/gocd,kyleolivo/gocd,gocd/gocd,tomzo/gocd,varshavaradarajan/gocd,varshavaradarajan/gocd,sghill/gocd,Skarlso/gocd,aj-jaswanth/gocd,ketan/gocd,bdpipa... |
761000c77088d6f588afaf505ea76083e70c5318 | start_archiver_access_cmd.bat | start_archiver_access_cmd.bat |
setlocal
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
%PYTHON% %MYDIRBLOCK%ArchiverAccess\archiver_access.py
| @echo off
setlocal
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
%PYTHONW% %MYDIRBLOCK%ArchiverAccess\archiver_access.py
| Put back echo and python | Put back echo and python
| Batchfile | bsd-3-clause | ISISComputingGroup/EPICS-inst_servers,ISISComputingGroup/EPICS-inst_servers |
c3dd5f600879279191ada8749c4c9c6e0a965a8a | virtualenv_install.bat | virtualenv_install.bat | @ECHO OFF
:: Performs necessary setup steps to allow the use of
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
:: for creating and using Python virtual environments.
python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win
echo ""
echo ""
echo "*** You may now use virt... | @ECHO OFF
:: Performs necessary setup steps to allow the use of
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
:: for creating and using Python virtual environments.
python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win
echo:
echo:
echo: *** You may now use virtuale... | Fix echo commands in a virtualenv Windows batch file | Fix echo commands in a virtualenv Windows batch file
| Batchfile | mit | mdmintz/SeleniumBase,seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,mdmintz/seleniumspot,mdmintz/seleniumspot,seleniumbase/SeleniumBase |
88c6b55756c54f15ab1a994b2245766afe4e2250 | ktransw.cmd | ktransw.cmd | @echo off
python "%~dp0\ktransw.py" %*
| @echo off
REM
REM Copyright (c) 2016, G.A. vd. Hoorn
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by ... | Add missing license to wrapper batch. | Add missing license to wrapper batch.
| Batchfile | apache-2.0 | gavanderhoorn/ktransw_py |
dfdee8062308d21faef4df9f87dcd916968b0d6d | Resources/role_template/bin/symfony_cache_clear.cmd | Resources/role_template/bin/symfony_cache_clear.cmd | @echo off
cd "%~dp0"
IF EXIST ..\composer.json IF NOT EXIST ..\vendor\.composer (
ECHO Composer installing vendors... >> ..\startup-tasks-log.txt
'D:\Program Files (x86)\PHP\v5.3\php.exe' ..\bin\composer.phar install
ECHO Vendors installed >> ..\startup-tasks-log.txt
)
ECHO Starting Symfony Set... | @echo off
cd "%~dp0"
ECHO Starting Symfony Setup... >> ..\startup-tasks-log.txt
'D:\Program Files (x86)\PHP\v5.3\php.exe' ..\app\console --env=prod cache:clear
ECHO Symfony Cache warmed up >> ..\startup-tasks-log.txt
| Remove composer optimization as this doesnt work at the moment. | Remove composer optimization as this doesnt work at the moment.
| Batchfile | mit | beberlei/AzureDistributionBundle,beberlei/AzureDistributionBundle |
4c18b5b14fde052135cb913faf7c6d9b4c1e0916 | build.bat | build.bat | @echo off
if "%1" == "build" goto build
if "%1" == "tar" goto zip
if "%1" == "zip" goto zip
goto eof
:build
electron-packager . %npm_package_name% --platform=all --arch=x64 --version=%npm_package_electronVersion% --out=build --ignore="(build|node_modules)" --app-version="%npm_package_version%" --version-string.File... | @echo off
if "%1" == "build" goto build
if "%1" == "tar" goto zip
if "%1" == "zip" goto zip
goto eof
:build
electron-packager . %npm_package_name% --platform=all --arch=x64 --version=%npm_package_electronVersion% --out=build --ignore="(build|node_modules)" --app-version="%npm_package_version%" --version-string.File... | Delete old zip files before zip process | Delete old zip files before zip process
| Batchfile | mit | dogancelik/atomic-tweetdeck |
d754a0c478db3632d1dd490f62f33542c554fe5f | kokoro/release/csharp/windows/build_nuget.bat | kokoro/release/csharp/windows/build_nuget.bat | @rem enter repo root
cd /d %~dp0\..\..\..\..
cd csharp
@rem see what dotnet version is available
dotnet --version
@rem TODO(jtattermusch): Kokoro workers currently only have dotnet SDK 2.1.3
@rem so we just overwrite the SDK requirement in global.json as the results
@rem should be fully compatible.
echo { "sdk": { "... | @rem enter repo root
cd /d %~dp0\..\..\..\..
cd csharp
call build_packages.bat
| Revert "overcome the global.json constraint with a hack" | Revert "overcome the global.json constraint with a hack"
This reverts commit c02346c72aafd1826b0397dbbce4ce04bf252f50.
| Batchfile | bsd-3-clause | google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf |
dab0ce93f2ba6708e05f10e209b09915404bc89f | Bin/DarunGrim3/CopySrc.bat | Bin/DarunGrim3/CopySrc.bat | REM Start copying files
mkdir Src
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.py Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.bat Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\data Src\data
xcopy /D /S /I /Y "..\..\Src\Bin Collector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Diff Inspector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src... | REM Start copying files
mkdir Src
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.py Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.bat Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\data Src\data
xcopy /D /S /I /Y "..\..\Src\Bin Collector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Diff Inspector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src... | Use copy for configuration file copy | Use copy for configuration file copy
| Batchfile | bsd-3-clause | jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim |
9299c1dc0eb89b2c39fd13eb9fa0a1b99ba77fad | floppy/zz-start-sshd.cmd | floppy/zz-start-sshd.cmd | @setlocal EnableDelayedExpansion EnableExtensions
@for %%i in (%~dp0\_packer_config*.cmd) do @call "%%~i"
@if defined PACKER_DEBUG (@echo on) else (@echo off)
if not defined PACKER_SERVICES set PACKER_SERVICES=opensshd sshd BvSshServer winrm
title Starting services: %PACKER_SERVICES%. Please wait...
:: Intentionally... | @setlocal EnableDelayedExpansion EnableExtensions
@for %%i in (%~dp0\_packer_config*.cmd) do @call "%%~i"
@if defined PACKER_DEBUG (@echo on) else (@echo off)
if not defined PACKER_SERVICES set PACKER_SERVICES=opensshd sshd BvSshServer winrm
title Starting services: %PACKER_SERVICES%. Please wait...
:: Intentionally... | Configure winrm service to autostart | Configure winrm service to autostart
Fixes #19 | Batchfile | apache-2.0 | TaylorMonacelli/boxcutter-windows,MSumulong/windows,StefanScherer/windows,samepage-labs/windows-templates,samepage-labs/windows-templates,ambakshi/windows,c-owens/windows,StefanScherer/windows,TaylorMonacelli/boxcutter-windows,c-owens/windows,StefanScherer/windows,boxcutter/windows,boxcutter/windows,MSumulong/windows,T... |
6fa911cc27acb513f9734623ea50082ef0f64510 | src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/generate.cmd | src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/generate.cmd | ::
:: Microsoft Azure SDK for Net - Generate library code
:: Copyright (C) Microsoft Corporation. All Rights Reserved.
::
:: https://github.com/Azure/azure-rest-api-specs/commits/master
@echo off
set autoRestVersion=0.16.0-Nightly20160406
if "%1" == "" (
set specFile="https://raw.githubusercontent.com/Azure/azur... | ::
:: Microsoft Azure SDK for Net - Generate library code
:: Copyright (C) Microsoft Corporation. All Rights Reserved.
::
@echo off
set autoRestVersion=0.16.0-Nightly20160406
if "%1" == "" (
set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-06-15/swagger/storage.js... | Undo unintentional change to storage project | Undo unintentional change to storage project
| Batchfile | mit | hyonholee/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,r22016/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,pilor/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,mihymel/azure-sdk-for... |
23b163edf7fdf01819eb9b7a04ca19bfaab5e011 | v2/bin/sdownload.cmd | v2/bin/sdownload.cmd | @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
| @rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\jsr173_api.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\resolver.jar
java -classpath %cp% o... | Fix for sDownload tool. Added correct v2 classpath entries. Submitted by: Jacob Danner | Fix for sDownload tool. Added correct v2 classpath entries.
Submitted by: Jacob Danner
git-svn-id: 297cb4147f50b389680bb5ad136787e97b9148ae@111095 13f79535-47bb-0310-9956-ffa450edef68
| Batchfile | apache-2.0 | crow-misia/xmlbeans,crow-misia/xmlbeans,crow-misia/xmlbeans |
3f3a345fa4a4849ac50b16979cde53f6dd26d163 | webkit/build/JSConfig/prebuild.bat | webkit/build/JSConfig/prebuild.bat | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x ... | @echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
:: Fix cp.exe on vista: without this flag, the files that it creates are not accessible.
set CYGWIN=nontsec
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\s... | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security on top of NTFS. | Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security
on top of NTFS.
BUG=1157117
git-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@40 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
| Batchfile | bsd-3-clause | wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser |
f3f37b20bde0243bc4bf26939767ae97f5be9898 | tensorflow/tools/ci_build/windows/cpu/cmake/run_py.bat | tensorflow/tools/ci_build/windows/cpu/cmake/run_py.bat | :: This script assumes the standard setup on tensorflow Jenkins windows machines.
:: It is NOT guaranteed to work on any other machine. Use at your own risk!
::
:: REQUIREMENTS:
:: * All installed in standard locations:
:: - JDK8, and JAVA_HOME set.
:: - Microsoft Visual Studio 2015 Community Edition
:: - Msys2
:... | :: This script assumes the standard setup on tensorflow Jenkins windows machines.
:: It is NOT guaranteed to work on any other machine. Use at your own risk!
::
:: REQUIREMENTS:
:: * All installed in standard locations:
:: - JDK8, and JAVA_HOME set.
:: - Microsoft Visual Studio 2015 Community Edition
:: - Msys2
:... | Update name of PIP package | Update name of PIP package
The consolidated `setup.py` uses a different name for the PIP package, and this was causing tests to fail. | Batchfile | apache-2.0 | code-sauce/tensorflow,nightjean/Deep-Learning,davidzchen/tensorflow,lukeiwanski/tensorflow,jhaux/tensorflow,chenjun0210/tensorflow,ageron/tensorflow,benoitsteiner/tensorflow-xsmm,cxxgtxy/tensorflow,alsrgv/tensorflow,abhitopia/tensorflow,nolanliou/tensorflow,benoitsteiner/tensorflow-opencl,kevin-coder/tensorflow-fork,as... |
7e500274309179569525f7536d71286a8d3caa5a | build/build.bat | build/build.bat | Set DecorateName=DecorateName
Set Book=mencius
Set FontType=Traditional
Set BookFont=%Book%_%FontType%
Set CSSExt=.css
Set CSS_=--css=..\css\
Set NameStyle=%CSS_%%DecorateName%%CSSExt%
Set Output=%BookFont%
If "%1" == "name" (
Set Output=%Output%_%DecorateName%
Set Style=%NameStyle%
)
If Not "%2" == "... | Set DecorateName=DecorateName
Set Book=mencius
Set FontType=Traditional
Set BookFont=%Book%_%FontType%
Set CSSExt=.css
Set CSS_=--css=..\css\
Set NameStyle=%CSS_%%DecorateName%%CSSExt%
Set Output=%BookFont%
If "%1" == "name" (
Set Output=%Output%_%DecorateName%
Set Style=%NameStyle%
)
If Not "%2" == "... | Build header and footer for the pdf file | Build header and footer for the pdf file
| Batchfile | mit | fan-jiang/Dujing |
c491be733fc1f2c169574665d227e9585c8876a7 | ci/test-win.bat | ci/test-win.bat | setlocal EnableDelayedExpansion
echo Running Windows build and testscript %~dp0..\matlab\CIBuildAndTest.m
echo Path: %PATH%
set MATCOMMAND="try, run('%~dp0..\matlab\CIBuildAndTest.m'), catch ex, system(['ECHO Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
"C:\Program Files\MATLAB\R2015b\bin... | setlocal EnableDelayedExpansion
echo Running Windows build and testscript %~dp0..\matlab\CIBuildAndTest.m
echo Path: %PATH%
set MATCOMMAND="try, run('%~dp0..\matlab\CIBuildAndTest.m'), catch ex, system(['ECHO Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
"C:\Program Files\MATLAB\R2015b\bin... | Add file check before printing log file | Add file check before printing log file
| Batchfile | bsd-3-clause | gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg |
5d29c604e0c7b974fe0d26e8842d1ad17f1c9894 | deploy-sync.bat | deploy-sync.bat | ::I use PortableGit\bin in PATH
git init
::Ensure we have these for the next step
git checkout master && git commit -a -m "Deployment" && git push
::Switch to gh-pages, pull from master, commit, then switch back to master.
git checkout gh-pages && git checkout master psdle*.js && git checkout master psdle.xpi && git co... | ::I use PortableGit\bin in PATH
git init
::Ensure we have these for the next step
git checkout master && git commit -a -m "Deployment" && git push
::Switch to gh-pages, pull from master, commit, then switch back to master.
git checkout gh-pages && git checkout master psdle*.js && git commit -a -m "Sync with master." &&... | Deploy - Remove XPI checkout to gh-pages | Deploy - Remove XPI checkout to gh-pages
| Batchfile | mit | RePod/psdle |
ac482da5aa1aa49d18ed6b79a1f9497ec635e85a | build/test.cmd | build/test.cmd | @echo off
cd build
nuget restore packages.config -PackagesDirectory .
cd ..
build\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test tests\LineBot.Tests\LineBot.Tests.csproj --no-build -c release /p:codecov=true" -register:user -threshold:10 -oldStyle -safemode:off -output:.\LineBo... | @echo off
cd build
nuget restore packages.config -PackagesDirectory .
cd ..
build\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test tests\LineBot.Tests\LineBot.Tests.csproj --no-build -c release /p:codecov=true" -register:user -threshold:10 -oldStyle -safemode:off -output:.\LineBo... | Make sure codecov can understand ExcludeFromCodeCoverage. | Make sure codecov can understand ExcludeFromCodeCoverage.
| Batchfile | apache-2.0 | dlemstra/line-bot-sdk-dotnet,dlemstra/line-bot-sdk-dotnet |
47c785f4b8c92ea22df727787bb0246ba6caea01 | .ci/script.bat | .ci/script.bat | echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -host_arch=amd64 -arch=amd64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -test
cd dist/msvc-compatible
cl *.c /I ../kremlin/include /I . /I ../kremlin/kremlib/di... | echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -host_arch=amd64 -arch=amd64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -test
cd dist/msvc-compatible
cl *.c /I ../kremlin/include /I . /I ../kremlin/kremlib/di... | Fix syntax of for loops in batch files | Fix syntax of for loops in batch files
| Batchfile | apache-2.0 | mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star |
b768be48f5df87c13f2954543c941b7e9c84b8cf | msvc-scripts/process.bat | msvc-scripts/process.bat | cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.12/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo... | cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.12/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/4/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo... | Correct @SODIUM_LIBRARY_VERSION_MINOR@ substitution for Visual Studio | Correct @SODIUM_LIBRARY_VERSION_MINOR@ substitution for Visual Studio
| Batchfile | isc | Payshares/libsodium,Payshares/libsodium,Payshares/libsodium |
705b502bf4a5a0d2258cbc07739843769dcc5f89 | nuspec/BuildAndDeploySecurityServer.bat | nuspec/BuildAndDeploySecurityServer.bat | @Echo Off
REM set your api key once: nuget setApiKey Your-API-Key
SET "nuget_basedir="
"%ProgramFiles(x86)%/Microsoft Visual Studio 14.0/Common7/IDE/devenv" /build release ../proj/SecurityServer/proj/SecurityServer.sln
IF %ERRORLEVEL% NEQ 0 (
echo. && echo. && echo Build failed.
exit /B 1
)
%nuget_basedir%nuget... | @Echo Off
REM set your api key once: nuget setApiKey Your-API-Key
SET "nuget_basedir="
"%ProgramFiles(x86)%/Microsoft Visual Studio 14.0/Common7/IDE/devenv" /build release ../proj/SecurityServer/proj/SecurityServer.sln
IF %ERRORLEVEL% NEQ 0 (
echo. && echo. && echo Build failed.
exit /B 1
)
%nuget_basedir%nuget... | Exclude PermissionSTS from NuGet package generation | Exclude PermissionSTS from NuGet package generation
| Batchfile | mit | jbinder/dragon,jbinder/dragon,aduggleby/dragon,jbinder/dragon,aduggleby/dragon,aduggleby/dragon |
0a1f322c6aa0ce0fb250a11e9dd87853b931f8eb | bin/install.cmd | bin/install.cmd | @echo off
set /P NVM_PATH="Enter the absolute path where the zip file is extracted/copied to: "
set NVM_HOME=%NVM_PATH%
set NVM_SYMLINK=C:\Program Files\nodejs
setx /M NVM_HOME "%NVM_HOME%"
setx /M NVM_SYMLINK "%NVM_SYMLINK%"
for /f "skip=2 tokens=2,*" %%A in ('reg query "HKLM\System\CurrentControlSet\Control\Session ... | @echo off
set /P NVM_PATH="Enter the absolute path where the nvm-windows zip file is extracted/copied to: "
set NVM_HOME=%NVM_PATH%
set NVM_SYMLINK=C:\Program Files\nodejs
setx /M NVM_HOME "%NVM_HOME%"
setx /M NVM_SYMLINK "%NVM_SYMLINK%"
for /f "skip=2 tokens=2,*" %%A in ('reg query "HKLM\System\CurrentControlSet\Cont... | Define that NVM_PATH is for nvm | Define that NVM_PATH is for nvm | Batchfile | mit | coreybutler/nvm-windows,coreybutler/nvm-windows,zonplm/nvm-windows |
77855148607ac4ad2d54a87a1ad0167c5d43f063 | Build.cmd | Build.cmd | @echo off
cd %~dp0..
rake -f Build\build-win.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
| @echo off
cd %~dp0..
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
| Update build.cmd to use platform agnostic rakefile | Update build.cmd to use platform agnostic rakefile
| Batchfile | bsd-3-clause | i-e-b/SevenDigital.Messaging |
f937d806ea8397132405eeede17f2662d8b0c85f | build.stack.bat | build.stack.bat | @rem Change the current directory to the one containing this script
@cd %~dp0
@rem Build Hadrian and dependencies
@stack build
@rem Run Hadrian in GHC top directory forwarding additional user arguments
@stack exec hadrian -- --lint --directory ".." %*
| @rem Change the current directory to the one containing this script
@cd %~dp0
@rem Build Hadrian and dependencies and exit the script if the build failed
@stack build
@if %errorlevel% neq 0 exit /B %errorlevel%
@rem Run Hadrian in GHC top directory forwarding additional user arguments
@stack exec hadrian -- --lint --... | Exit the build script if Hadrian cannot be built | Exit the build script if Hadrian cannot be built
| Batchfile | bsd-3-clause | sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,snowleopard/shaking-up-ghc,bgamari/shaking-up-ghc,izgzhen/hadrian,snowleopard/hadrian |
92af5b14c7dd2361cc7dc336ee9580a77596dced | MakeSharpDX.cmd | MakeSharpDX.cmd | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | @echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %* | Switch to Visual Studio 2012 for build release | [Build] Switch to Visual Studio 2012 for build release
| Batchfile | mit | sharpdx/SharpDX,TigerKO/SharpDX,waltdestler/SharpDX,Ixonos-USA/SharpDX,TechPriest/SharpDX,andrewst/SharpDX,manu-silicon/SharpDX,PavelBrokhman/SharpDX,dazerdude/SharpDX,RobyDX/SharpDX,davidlee80/SharpDX-1,weltkante/SharpDX,TigerKO/SharpDX,waltdestler/SharpDX,TechPriest/SharpDX,davidlee80/SharpDX-1,TechPriest/SharpDX,sho... |
a92856d0b2c7587a6e2777a669f2c9838fc75604 | ci/test-win.bat | ci/test-win.bat | echo Running Windows build and test
call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('$(pwd)/matlab/CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
if not "%ERRORLEVEL%" == "0" (
echo Exit Code = ... | echo Running Windows build and test
call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('%cd%/matlab/CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
if not "%ERRORLEVEL%" == "0" (
echo Exit Code = %E... | Fix current directory for batch file | Fix current directory for batch file
| Batchfile | bsd-3-clause | gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg |
84313c1fe8d7ba6d8f955d946dad6ecd7dce871e | Build/ZipRelease.cmd | Build/ZipRelease.cmd | call clean ..\Output\NET40\Examples
call clean ..\Output\NET45\Examples
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-NET40-%1.zip ..\Output\NET40\*.* > ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-NET45-%1.zip ..\Output\NET45\*.* >> ZipRelease.log
REM "C:\Program Files\7-Zip\7... | mkdir ..\Output\Release
mkdir ..\Output\Release\NET40
mkdir ..\Output\Release\NET45
mkdir ..\Output\Release\NetCore45
mkdir ..\Output\Release\NetCore45\Themes
mkdir ..\Output\Release\SL5
copy ..\Output\NET45\OxyPlot.??? ..\Output\Release
copy ..\Output\NET40\OxyPlot.WindowsForms.??? ..\Output\Release\NET40
... | Remove examples from Codeplex Release package. Include NET40/NET45/SL5/NetCore45 libraries, remove OpenXml and Pdf packages (use NuGet if you need these). | Remove examples from Codeplex Release package.
Include NET40/NET45/SL5/NetCore45 libraries, remove OpenXml and Pdf packages
(use NuGet if you need these).
| Batchfile | mit | shoelzer/oxyplot,DotNetDoctor/oxyplot,shoelzer/oxyplot,H2ONaCl/oxyplot,sevoku/oxyplot,GeertvanHorrik/oxyplot,shoelzer/oxyplot,br111an/oxyplot,Sbosanquet/oxyplot,H2ONaCl/oxyplot,Rustemt/oxyplot,NilesDavis/oxyplot,sevoku/oxyplot,olegtarasov/oxyplot,DotNetDoctor/oxyplot,TheAlmightyBob/oxyplot,Mitch-Connor/oxyplot,H2ONaCl/... |
31c7212e044b8a587149ea9affa37ccf105f157d | AppVeyorTestDolphinVM.cmd | AppVeyorTestDolphinVM.cmd | ECHO Clone Dolphin image environment
git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin
ECHO Copy executables
copy ..\..\Dolphin7.exe Dolphin
copy ..\..\DolphinVM7.dll Dolphin
copy ..\..\DolphinCR7.dll Dolphin
copy ..\..\DolphinDR7.dll Dolphin
copy ..\..\DolphinSureCrypto.dll Dolphin
... | ECHO Clone Dolphin image environment
git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin
ECHO Copy executables
copy ..\..\*.exe Dolphin
copy ..\..\*.dll Dolphin
ECHO Boot and test image
cd Dolphin
CALL BootDPRO
CALL TestDPRO | Fix failing VersionResourceTests caused by removal of EXE/DLLs from image repo. | Fix failing VersionResourceTests caused by removal of EXE/DLLs from image repo.
| Batchfile | mit | blairmcg/Dolphin,dolphinsmalltalk/DolphinVM,dolphinsmalltalk/DolphinVM,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,objectarts/DolphinVM,jgfoster/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,objectarts/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,bla... |
5ef544a8753b4822e16c84fb805682dd30f64f44 | Bin/DarunGrim3/SetupDist.bat | Bin/DarunGrim3/SetupDist.bat | REM Clean Up
rmdir /Q /S Src
rmdir /Q /S Bin
del /Q DarunGrim3.zip
mkdir Src\bin
copy ..\DarunGrim2\* Src\bin\
copy ..\..\Publish\Docs\*.pdf Src\bin
call CopySrc.bat
REM Generate binaries
pushd Src
c:\python26\python SetupDist.py py2exe
popd
REM Prepare binary directory
REM Copy necessary files
co... | REM Clean Up
rmdir /Q /S Src
rmdir /Q /S Bin
del /Q DarunGrim3.zip
mkdir Src\bin
copy ..\DarunGrim2\* Src\bin\
copy ..\..\Publish\Docs\*.pdf Src\bin
call CopySrc.bat
del Src\*.pyc
REM Generate binaries
pushd Src
c:\python26\python SetupDist.py py2exe
popd
REM Prepare binary directory
REM Copy nece... | Remove *.pyc files from distribution files | Remove *.pyc files from distribution files
| Batchfile | bsd-3-clause | jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim |
6909eefc0813c189b32eb94bb2cee9a8dec804c9 | build-for-unity.cmd | build-for-unity.cmd | setlocal
pushd %~dp0
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
call %msBuildDir%\msbuild.exe ClientKit\ClientKit.csproj /p:Configuration=Release20 /p:OutputPath=..\Managed-OSVR-Unity /p:NativeOutputSuffix32=x86 /p:NativeOutputSuffix64=x86_64%*
endlocal
| setlocal
pushd %~dp0
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
call %msBuildDir%\msbuild.exe ClientKit\ClientKit.csproj /p:Configuration=Release20 /p:OutputPath=..\Managed-OSVR-Unity /p:NativeOutputSuffix32=x86 /p:NativeOutputSuffix64=x86_64 %*
endlocal
| Fix build by restoring a missing space. | Fix build by restoring a missing space.
| Batchfile | apache-2.0 | OSVR/Managed-OSVR,JeroMiya/Managed-OSVR |
1d7dc1feb542081a7b2033a365b5fdf9d6d2d1e6 | perl/08-pack.cmd | perl/08-pack.cmd | @echo off
SETLOCAL
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
-l "%PERLDIR%/perl/site/lib/libsass.dll"... | @echo off
SETLOCAL
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Benchmark ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
-l "%PERLDIR%/perl/site/l... | Include perl benchmark module for psass utility | Include perl benchmark module for psass utility
| Batchfile | mit | mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer |
50f0958683e033d3d16eebea59026c74824d2d01 | scripts/create-exe.bat | scripts/create-exe.bat | @echo off
set cwd=%cd%
cd /D %~dp0
set DevCmd="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat"
set MSBuildOptions=/v:m /p:Configuration=Release
set BuildDir64="build-exe-64"
set BuildDir32="build-exe-32"
call %DevCmd%
echo Building 64-bit tev...
mkdir %BuildDir64%
cd %Build... | @echo off
set cwd=%cd%
cd /D %~dp0
set DevCmd="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
set MSBuildOptions=/v:m /p:Configuration=Release
set BuildDir64="build-exe-64"
call %DevCmd%
echo Building 64-bit tev...
mkdir %BuildDir64%
cd %BuildDir64%
cmake -DTEV_DEPLOY... | Update automated release build scripts on Windows | Update automated release build scripts on Windows
| Batchfile | bsd-3-clause | Tom94/tev,Tom94/tev,Tom94/tev,Tom94/tev |
2c4e0be3ce879a2a05a0d70adc8bbecbc4b27f2b | scripts/install.cmd | scripts/install.cmd | @echo off
npm i&& for /D %%i in (zeronet-*) do (cd "%%i"&& npm i&& cd ..)
goto :eof
| @echo off
npm i&& for /D %%i in (zeronet-*) do (cd "%%i"&& mklink /D node_modules ..\node_modules&& cd ..)
goto :eof
| Use symlink for windows too | Use symlink for windows too
| Batchfile | mit | kustomzone/zeronet-js,ZeroNetJS/zeronet-js,kustomzone/zeronet-js,ZeroNetJS/zeronet-js,ZeroNetJS/zeronet-js |
3ce40f00c48d8bbfac748c67af36ea63a960b74e | kokoro/windows/continuous.bat | kokoro/windows/continuous.bat | CD git/re2 || EXIT /B 1
cmake . || EXIT /B 1
cmake --build . --clean-first || EXIT /B 1
ctest -E dfa^|exhaustive^|random || EXIT /B 1
cmake -DCMAKE_BUILD_TYPE=Release . || EXIT /B 1
cmake --build . --clean-first || EXIT /B 1
... | 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 --build-config Debug -E dfa^|exhaustive^|random || EXIT ... | Tweak the CI script for CMake on Windows. | Tweak the CI script for CMake on Windows.
Change-Id: I10f78c381c3aaf542952863ac6d6e9398d2fbb65
Reviewed-on: https://code-review.googlesource.com/7217
Reviewed-by: Paul Wankadia <62d4e38bb1380f055ec4b899baa75e52af09c5f7@google.com>
| Batchfile | bsd-3-clause | google/re2,google/re2,google/re2,google/re2,google/re2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.