refreshenv
This commit is contained in:
parent
85b7d1e1b5
commit
e12812410d
|
@ -0,0 +1,3 @@
|
|||
@echo off
|
||||
call RefreshEnv
|
||||
call %~dp0\..\env.cmd
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where gem >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ruby -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
|
||||
call gem %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where ghc.exe >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ghc -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
ghc %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where ghci.exe >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ghc -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
ghci %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where irb >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ruby -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
|
||||
irb %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where npm >nul 2>nul
|
||||
if errorlevel 1 call v-choco install nodejs -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install nodejs -y & call %~dp0\v-choco-refreshenv
|
||||
call node %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where npm >nul 2>nul
|
||||
if errorlevel 1 call v-choco install nodejs -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install nodejs -y & call %~dp0\v-choco-refreshenv
|
||||
call npm %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where ruby.exe >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ruby -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
|
||||
ruby %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where rubyw >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ruby -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ruby -y & call %~dp0\v-choco-refreshenv
|
||||
rubyw %*
|
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
where runghc.exe >nul 2>nul
|
||||
if errorlevel 1 call v-choco install ghc -y & call refreshenv
|
||||
if errorlevel 1 call v-choco install ghc -y & call %~dp0\v-choco-refreshenv
|
||||
runghc %*
|
|
@ -0,0 +1,3 @@
|
|||
@echo off
|
||||
set VID_HOME=%~dp0
|
||||
set PATH=%~dp0\bin;%PATH%
|
Loading…
Reference in New Issue