Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
rabix | 0c4bd51b1a | |
rabix | 3d070cc73a | |
rabix | 20348ce8d5 | |
rabix | 344924b8dc | |
rabix | 0ed6ba34b3 |
|
@ -1,5 +1,7 @@
|
|||
@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 %*
|
|
@ -0,0 +1,7 @@
|
|||
@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
|
|
@ -0,0 +1,7 @@
|
|||
@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 v-choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
@echo off
|
||||
where ghci.exe >nul 2>nul
|
||||
if errorlevel 1 call choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
ghci.exe %*
|
|
@ -0,0 +1,4 @@
|
|||
@echo off
|
||||
where git.exe 2>nul >nul
|
||||
if errorlevel 1 call choco install git & call %~dp0\v-choco-refreshenv
|
||||
git.exe %*
|
|
@ -0,0 +1,8 @@
|
|||
@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
|
Binary file not shown.
BIN
readme.ppt
BIN
readme.ppt
Binary file not shown.
Loading…
Reference in New Issue