From 1efda55761c29fbe2e7afe8df608c0f192b6cda0 Mon Sep 17 00:00:00 2001 From: Wliu Date: Mon, 10 Oct 2016 14:19:30 -0400 Subject: [PATCH] Redirect apm scripts to use the actual apm ones --- resources/win/apm.cmd | 2 +- resources/win/apm.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/win/apm.cmd b/resources/win/apm.cmd index 510168983..371172c43 100644 --- a/resources/win/apm.cmd +++ b/resources/win/apm.cmd @@ -1,3 +1,3 @@ @echo off -"%~dp0\..\app\apm\bin\node.exe" "%~dp0\..\app\apm\lib\cli.js" %* +"%~dp0\..\app\apm\bin\apm.cmd" %* diff --git a/resources/win/apm.sh b/resources/win/apm.sh index b50a70a82..99ccfec69 100644 --- a/resources/win/apm.sh +++ b/resources/win/apm.sh @@ -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" "$@"