Skip to content

Commit

Permalink
server cli scripts: node not found
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Mar 31, 2022
1 parent 8864c16 commit 7239b78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/server/bin/helpers/browser-darwin.sh
Expand Up @@ -12,7 +12,7 @@ realdir() {
echo "$( cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd )"
}

ROOT=$(dirname "$(realdir "$0")")
ROOT"$(dirname "$(dirname "$(realdir "$0")")")"

APP_NAME="@@APPNAME@@"
VERSION="@@VERSION@@"
Expand Down
2 changes: 1 addition & 1 deletion resources/server/bin/helpers/browser-linux.sh
Expand Up @@ -2,7 +2,7 @@
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
ROOT="$(dirname "$(dirname "$(readlink -f "$0")")")"
ROOT="$(dirname "$(dirname "$(dirname "$(readlink -f "$0")")")")"

APP_NAME="@@APPNAME@@"
VERSION="@@VERSION@@"
Expand Down
2 changes: 1 addition & 1 deletion resources/server/bin/remote-cli/code-darwin.sh
Expand Up @@ -12,7 +12,7 @@ realdir() {
echo "$( cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd )"
}

ROOT=$(dirname "$(realdir "$0")")
ROOT"$(dirname "$(dirname "$(realdir "$0")")")"

APP_NAME="@@APPNAME@@"
VERSION="@@VERSION@@"
Expand Down
2 changes: 1 addition & 1 deletion resources/server/bin/remote-cli/code-linux.sh
Expand Up @@ -2,7 +2,7 @@
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
ROOT="$(dirname "$(dirname "$(readlink -f "$0")")")"
ROOT="$(dirname "$(dirname "$(dirname "$(readlink -f "$0")")")")"

APP_NAME="@@APPNAME@@"
VERSION="@@VERSION@@"
Expand Down

0 comments on commit 7239b78

Please sign in to comment.