We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e024d67 commit abd053fCopy full SHA for abd053f
resources/gitpod/bin/code.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+if [[ "$OSTYPE" == "darwin"* ]]; then
4
+ realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
5
+ ROOT=$(dirname "$(realpath "$0")")
6
+else
7
+ ROOT=$(dirname "$(readlink -f $0)")
8
+fi
9
10
+exec $ROOT/../node $ROOT/../out/server-cli.js "$@"
resources/gitpod/server.sh
@@ -0,0 +1,11 @@
+PATH=$ROOT/bin:$PATH
11
+exec $ROOT/node $ROOT/out/server.js "$@"
0 commit comments