removed v

This commit is contained in:
rabix 2022-03-04 19:35:47 +08:00
parent e589656a92
commit 3c39ae4b82
26 changed files with 47 additions and 47 deletions

4
bin/bundler.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where bundler.bat >nul 2>nul
if errorlevel 1 call gem install bundler
call bundler.bat %*

4
bin/cargo.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where cargo.exe 2>nul >nul
if errorlevel 1 call scoop install rust & call %~dp0\v-choco-refreshenv
cargo.exe %*

4
bin/gem.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
where gem.cmd >nul 2>nul
if errorlevel 1 call choco install ruby -y & call %~dp0\v-choco-refreshenv
call gem.cmd %*

4
bin/ghc.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where ghc.exe >nul 2>nul
if errorlevel 1 call choco install ghc -y & call %~dp0\v-choco-refreshenv
ghc.exe %*

View File

@ -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
ghci %*
ghci.exe %*

4
bin/irb.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where ruby.exe >nul 2>nul
if errorlevel 1 call choco install ruby -y & call %~dp0\v-choco-refreshenv
irb.bat %*

4
bin/node.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where node.exe >nul 2>nul
if errorlevel 1 call choco install nodejs -y & call %~dp0\v-choco-refreshenv
call node.exe %*

4
bin/npm.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
where npm.cmd >nul 2>nul
if errorlevel 1 call choco install nodejs -y & call %~dp0\v-choco-refreshenv
call npm.cmd %*

4
bin/qemu.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where qemu-system-x86_64.exe 2>nul >nul
if errorlevel 1 call scoop install qemu & call %~dp0\v-choco-refreshenv
%userprofile%\scoop\apps\qemu\6.2.0\qemu-system-x86_64.exe %*

4
bin/ruby.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where ruby.exe >nul 2>nul
if errorlevel 1 call choco install ruby -y & call %~dp0\v-choco-refreshenv
ruby.exe %*

4
bin/rubyw.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where rubyw.exe >nul 2>nul
if errorlevel 1 call choco install ruby -y & call %~dp0\v-choco-refreshenv
rubyw.exe %*

4
bin/runghc.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
where runghc.exe >nul 2>nul
if errorlevel 1 call choco install ghc -y & call %~dp0\v-choco-refreshenv
runghc.exe %*

View File

@ -1,4 +1,4 @@
@echo off
where scoop 2>nul >nul
where scoop.cmd 2>nul >nul
if errorlevel 1 powershell -c "Set-ExecutionPolicy RemoteSigned -scope CurrentUser; Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')"
call scoop %*
call scoop.cmd %*

View File

@ -1,4 +0,0 @@
@echo off
where bundler >nul 2>nul
if errorlevel 1 call v-gem install bundler
call bundler %*

View File

@ -1,4 +0,0 @@
@echo off
where cargo.exe 2>nul >nul
if errorlevel 1 call v-scoop install rust & call %~dp0\v-choco-refreshenv
cargo.exe %*

View File

@ -1,4 +0,0 @@
@echo off
where gem >nul 2>nul
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
call gem %*

View File

@ -1,4 +0,0 @@
@echo off
where ghc.exe >nul 2>nul
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
ghc %*

View File

@ -1,4 +0,0 @@
@echo off
where irb >nul 2>nul
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
irb %*

View File

@ -1,4 +0,0 @@
@echo off
where npm >nul 2>nul
if errorlevel 1 call v-choco install nodejs -y & call %~dp0\v-choco-refreshenv
call node %*

View File

@ -1,4 +0,0 @@
@echo off
where npm >nul 2>nul
if errorlevel 1 call v-choco install nodejs -y & call %~dp0\v-choco-refreshenv
call npm %*

View File

@ -1,4 +0,0 @@
@echo off
where qemu-system-x86_64.exe 2>nul >nul
if errorlevel 1 call v-scoop install qemu & call %~dp0\v-choco-refreshenv
%userprofile%\scoop\apps\qemu\6.2.0\qemu-system-x86_64.exe %*

View File

@ -1,4 +0,0 @@
@echo off
where ruby.exe >nul 2>nul
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
ruby %*

View File

@ -1,4 +0,0 @@
@echo off
where rubyw >nul 2>nul
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
rubyw %*

View File

@ -1,4 +0,0 @@
@echo off
where runghc.exe >nul 2>nul
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
runghc %*