mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
25 lines
854 B
Batchfile
25 lines
854 B
Batchfile
@echo off
|
|
|
|
rem only if we are running from a checkout
|
|
IF EXIST "%~dp0\.git" (
|
|
rem if dev_bundle is not present, get it
|
|
IF NOT EXIST "%~dp0\dev_bundle" (
|
|
REM need `< con` so that we can run this file from Node
|
|
REM (See http://stackoverflow.com/questions/9155289/calling-powershell-from-nodejs)
|
|
PowerShell.exe -executionpolicy ByPass -file "%~dp0\scripts\windows\download-dev-bundle.ps1" < con
|
|
)
|
|
|
|
rem if dev_bundle is the wrong version, remove it and get a new one
|
|
PowerShell.exe -executionpolicy ByPass -file "%~dp0\scripts\windows\check-dev-bundle.ps1" < con
|
|
|
|
IF errorlevel 1 (
|
|
rmdir /s /q "%~dp0\dev_bundle"
|
|
PowerShell.exe -executionpolicy ByPass -file "%~dp0\scripts\windows\download-dev-bundle.ps1" < con
|
|
)
|
|
)
|
|
|
|
SET NODE_PATH=%~dp0\dev_bundle\lib\node_modules
|
|
|
|
"%~dp0\dev_bundle\bin\node.exe" "%~dp0\tools\main.js" %*
|
|
|