Skip to content

Commit

Permalink
Merge pull request #154 from virtual-world-framework/branch/vwf-scrip…
Browse files Browse the repository at this point in the history
…t-windows

Remove unnecessary calls to cmd.exe in vwf.bat
  • Loading branch information
eric79 committed Mar 11, 2014
2 parents f11a420 + 3f74104 commit 3f0ce6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vwf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
REM Check to see if Node is installed and accessible from the Path variable
REM If it is, we start up the NodeJS Server. The NodeJS server accepts command line parameters.
REM C:\> vwf --help will display all of the currently available parameters accepted by Virtual World Framework
pushd %VWF_DIR% && cmd.exe /C npm install && popd && cmd.exe /C node "%VWF_DIR%/node-server.js" %*
pushd %VWF_DIR% && npm install && popd && node "%VWF_DIR%/node-server.js" %*

0 comments on commit 3f0ce6e

Please sign in to comment.