Merge pull request #12929 from atom/wl-use-scripts-from-apm

Redirect apm scripts to use the actual apm ones
This commit is contained in:
Damien Guard 2016-12-12 19:05:21 -08:00 committed by GitHub
commit 59dfb9e54b
2 changed files with 2 additions and 3 deletions

View File

@ -1,3 +1,3 @@
@echo off
"%~dp0\..\app\apm\bin\node.exe" "%~dp0\..\app\apm\lib\cli.js" %*
"%~dp0\..\app\apm\bin\apm.cmd" %*

View File

@ -1,4 +1,3 @@
#!/bin/sh
directory=$(dirname "$0")
"$directory/../app/apm/bin/node.exe" "$directory/../app/apm/lib/cli.js" "$@"
"$(dirname "$0")/../app/apm/apm.sh" "$@"