Path: blob/main/extensions/copilot/script/simulate.sh
13383 views
#!/usr/bin/env bash1#---------------------------------------------------------------------------------------------2# Copyright (c) Microsoft Corporation. All rights reserved.3#---------------------------------------------------------------------------------------------456set -e78if [[ "$OSTYPE" == "darwin"* ]]; then9realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }10ROOT=$(dirname "$(dirname "$(realpath "$0")")")11ELTRON="$ROOT/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron"12else13ROOT=$(dirname "$(dirname "$(readlink -f $0)")")14ELTRON="$ROOT/node_modules/electron/dist/electron"15fi1617cd "$ROOT"18exec "$ELTRON" ./script/electron/simulationWorkbenchMain.js "$@"1920exit $?212223