text
stringlengths
0
834k
goto end
:NoDestCreated1
echo %PROG%: Error: Something went wrong, %FILE_DEST2% was not created.
echo You might try setting _ECHO=1 and then running again to see what
echo failed.
echo Note that SED.EXE and GREP.EXE are required by this batch file.
goto end
:BadFormat
echo %PROG%: Error: Some lines in %FILE_ID% are in an incorrect format.
echo These are listed in %FILE_BAD%.
goto end
:NoTool
echo %PROG%: Error: One of the following tools could not be located:
echo %SED%
echo %GREP%
goto end
:end
endlocal
",29.0786026201,98,0.6621114281
266,d02816faa4af5113a33f46124e75037b6b9c0226,591,cmd,Batchfile,build/msvc.release.cmd,g-stefan/quantum-script-extension-sha512,87f5722b561aac3fdb5fe26000be68ade7756be1,['MIT' 'Unlicense'],,,,build/msvc.release.cmd,g-stefan/quantum-script-extension-sha512,87f5722b561aac3fdb5fe26000be68ade7756be1,['MIT' 'Unlicense'],,,,build/msvc.release.cmd,g-stefan/quantum-script-extension-sha512,87f5722b561aac3fdb5fe26000be68ade7756be1,['MIT' 'Unlicense'],,,,"@echo off
rem Public domain
rem http://unlicense.org/
rem Created by Grigore Stefan <g_stefan@yahoo.com>
echo -^> release quantum-script-extension-sha512
goto cmdXDefined
:cmdX
%*
if errorlevel 1 goto cmdXError
goto :eof
:cmdXError
echo ""Error: release""
exit 1
:cmdXDefined
set XYO_PATH_RELEASE=release
call :cmdX call build\msvc.cmd make
call :cmdX call build\msvc.cmd sign
call :cmdX call build\msvc.cmd install
call :cmdX call build\msvc.cmd install-release
call :cmdX xyo-cc quantum-script-extension-sha512 --archive-release-sha512 --version-file=version.ini
",23.64,102,0.7563451777
267,d02836c40c4aaedf188f99475c899339e9428f77,589,cmd,Batchfile,Hardware/IntegratedSensor/archive/Version2/copygerbers.cmd,menloparkinnovation/openpux,d6c45124343675e2d6be60e968b763ea975b7b80,['Apache-2.0'],3.0,2016-01-04T16:17:00.000Z,2019-12-24T14:09:58.000Z,Hardware/IntegratedSensor/archive/version3/copygerbers.cmd,menloparkinnovation/openpux,d6c45124343675e2d6be60e968b763ea975b7b80,['Apache-2.0'],,,,Hardware/IntegratedSensor/archive/version3/copygerbers.cmd,menloparkinnovation/openpux,d6c45124343675e2d6be60e968b763ea975b7b80,['Apache-2.0'],2.0,2019-09-27T04:42:42.000Z,2019-12-24T14:10:00.000Z,"
mkdir \tmp\GerbersDir
xcopy /y IntegratedSensor.TXT \tmp\GerbersDir
xcopy /y IntegratedSensor.GBL \tmp\GerbersDir
xcopy /y IntegratedSensor.GTL \tmp\GerbersDir
xcopy /y IntegratedSensor.GBO \tmp\GerbersDir
xcopy /y IntegratedSensor.GTO \tmp\GerbersDir
xcopy /y IntegratedSensor.GBS \tmp\GerbersDir
xcopy /y IntegratedSensor.GTS \tmp\GerbersDir
xcopy /y IntegratedSensor.GTP \tmp\GerbersDir
rem These confuse the BatchPCB order submitter
rem xcopy /y IntegratedSensor.dri \tmp\GerbersDir
rem xcopy /y IntegratedSensor.gpi \tmp\GerbersDir
rem xcopy /y IntegratedSensor.pro \tmp\GerbersDir
",36.8125,49,0.8234295416
268,d0285c9d36732788d185ba854563361c7d0fa3a3,938,bat,Batchfile,tools/bin/manifest.bat,cwchentw/mdcms,2e6f4bf19bd7b107212e1651974d25c220288051,['MIT'],,,,tools/bin/manifest.bat,cwchentw/mdcms,2e6f4bf19bd7b107212e1651974d25c220288051,['MIT'],,,,tools/bin/manifest.bat,cwchentw/mdcms,2e6f4bf19bd7b107212e1651974d25c220288051,['MIT'],,,,"@echo off
rem A utility script to generate a manifest.json for mdcms.
rem Check whether PHP is available on the system.
php --version >nul || (
echo No PHP on the system >&2
exit /b 1
)
rem Get working directory of current batch script.
set cwd=%~dp0
rem Get path to executables.
set bin=%cwd%..\bin
rem Get path to library.
set lib=%cwd%..\lib
rem Get path to PHP scripts.
set libexec=%cwd%..\libexec
rem Generate site settings if it doesn't exist.
if not exist %lib%\settings.bat (
call %bin%\init.bat || (
exit /b %ERRORLEVEL%
)
)
rem Load site settings.
call %lib%\settings.bat
rem Create a public directory if it doesn't exist.
if not exist %public% (
mkdir %public% || (
echo Unable to create a public directory >&2
exit /b 1
)
)