Compare commits
No commits in common. "master" and "pre1" have entirely different histories.
|
@ -1,7 +1,5 @@
|
|||
@echo off
|
||||
where choco.exe >nul 2>nul
|
||||
if errorlevel 1 (
|
||||
powershell -c "Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1').Replace('if (Test-ChocolateyInstalled)', 'if ($false)'))"
|
||||
call v-choco-refreshenv
|
||||
)
|
||||
if errorlevel 1 powershell -c "Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1').Replace('if (Test-ChocolateyInstalled)', 'if ($false)'))"
|
||||
call v-choco-refreshenv
|
||||
choco.exe %*
|
|
@ -1,7 +0,0 @@
|
|||
@echo off
|
||||
setlocal
|
||||
REM ensure-choco command-name choco-package-name args
|
||||
where %1 2>nul >nul
|
||||
if errorlevel 1 (call choco install %2 -y & call v-choco-refreshenv)
|
||||
set _name_=%1
|
||||
call %_name_% %3 %4 %5 %6 %7 %8 %9
|
|
@ -1,7 +0,0 @@
|
|||
@echo off
|
||||
setlocal
|
||||
REM ensure-scoop command-name choco-package-name args
|
||||
where %1 2>nul >nul
|
||||
if errorlevel 1 (call scoop install %2 & call v-choco-refreshenv)
|
||||
set _name_=%1
|
||||
call %_name_% %3 %4 %5 %6 %7 %8 %9
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where ghci.exe >nul 2>nul
|
||||
if errorlevel 1 call choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
@echo off
|
||||
where ghci.exe >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
ghci.exe %*
|
|
@ -1,4 +0,0 @@
|
|||
@echo off
|
||||
where git.exe 2>nul >nul
|
||||
if errorlevel 1 call choco install git & call %~dp0\v-choco-refreshenv
|
||||
git.exe %*
|
|
@ -1,8 +0,0 @@
|
|||
@echo off
|
||||
setlocal
|
||||
if "%1"=="" (
|
||||
echo gitme username/reponame [TARGET]
|
||||
exit /b
|
||||
)
|
||||
for %%A in (. %2) do set target=%%A
|
||||
git clone https://gitme.fun/%1 %target% && pushd %target% & if exist vid-init-module.cmd call vid-init-module.cmd & popd
|
BIN
readme.pdf
BIN
readme.pdf
Binary file not shown.
BIN
readme.ppt
BIN
readme.ppt
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
@echo off
|
||||
set VID_HOME=%~dp0
|
||||
set PATH=%~dp0\bin;%PATH%
|
||||
cmd /k
|
Loading…
Reference in New Issue