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
|
@echo off
|
||||||
where gem >nul 2>nul
|
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 %*
|
call gem %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where ghc.exe >nul 2>nul
|
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 %*
|
ghc %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where ghci.exe >nul 2>nul
|
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 %*
|
ghci %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where irb >nul 2>nul
|
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 %*
|
irb %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where npm >nul 2>nul
|
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 %*
|
call node %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where npm >nul 2>nul
|
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 %*
|
call npm %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where ruby.exe >nul 2>nul
|
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 %*
|
ruby %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where rubyw >nul 2>nul
|
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 %*
|
rubyw %*
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
where runghc.exe >nul 2>nul
|
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 %*
|
runghc %*
|
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
set VID_HOME=%~dp0
|
||||||
|
set PATH=%~dp0\bin;%PATH%
|
Loading…
Reference in New Issue