22 lines
827 B
Bash
22 lines
827 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
|
# If root, ensure that --user-data-dir or --file-write is specified
|
|
if [ "$(id -u)" = "0" ]; then
|
|
for i in $@
|
|
do
|
|
if [[ $i == --user-data-dir || $i == --user-data-dir=* || $i == --file-write ]]; then
|
|
CAN_LAUNCH_AS_ROOT=1
|
|
fi
|
|
done
|
|
if [ -z $CAN_LAUNCH_AS_ROOT ]; then
|
|
echo "You are trying to start vscode as a super user which is not recommended. If you really want to, you must specify an alternate user data directory using the --user-data-dir argument." 1>&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
VSCODE_PATH="/usr/lib/code-oss"
|
|
ELECTRON="$VSCODE_PATH/code-oss"
|
|
CLI="$VSCODE_PATH/resources/app/out/cli.js"
|
|
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
|
|
exit $? |