mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Summary: setenv.bat.dist was a bit fucked, fixed it up Test Plan: copy setenv.bat.dist to setenv.bat and update ARC_HOME to point to your arcanist directory run setenv.bat Reviewers: #ss14_developers, Kraso Reviewed By: #ss14_developers, Kraso Subscribers: YotaXP Differential Revision: http://phab.nexisonline.net/D29
8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
REM @echo off
|
|
SET ARC_HOME=E:\dev\arcanist\arcanist
|
|
CMD /C call arc.bat > nul 2>&1
|
|
if ERRORLEVEL 1 GOTO path
|
|
GOTO end
|
|
:path
|
|
SET PATH=%PATH%;%ARC_HOME%\bin
|
|
:end |