8 lines
101 B
Batchfile
8 lines
101 B
Batchfile
@echo off
|
|
call bundle show > NUL
|
|
if ERRORLEVEL 1 (
|
|
rbenv exec %~n0 %*
|
|
) else (
|
|
bundle exec %~n0 %*
|
|
)
|