mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-24 01:12:33 +03:00
Update logic to disable telemetry and crash reporting settings
This commit is contained in:
parent
11db2cfa65
commit
207c9cd04b
@ -1,9 +1,49 @@
|
|||||||
REPLACEMENT="s/'default': true/'default': false/"
|
DEFAULT_TRUE="'default': true"
|
||||||
|
DEFAULT_FALSE="'default': false"
|
||||||
|
TELEMETRY_ENABLE="'telemetry.enableTelemetry':"
|
||||||
|
TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':"
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
replace () {
|
||||||
sed -i '' -E "$REPLACEMENT" src/vs/platform/telemetry/common/telemetryService.ts
|
echo $1
|
||||||
sed -i '' -E "$REPLACEMENT" src/vs/workbench/services/crashReporter/electron-browser/crashReporterService.ts
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
else
|
sed -i '' -E "$1" $2
|
||||||
sed -i -E "$REPLACEMENT" src/vs/platform/telemetry/common/telemetryService.ts
|
else
|
||||||
sed -i -E "$REPLACEMENT" src/vs/workbench/services/crashReporter/electron-browser/crashReporterService.ts
|
sed -i -E "$1" $2
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
update_setting () {
|
||||||
|
local FILENAME="$2"
|
||||||
|
# check that the file exists
|
||||||
|
if [ ! -f $FILENAME ]; then
|
||||||
|
echo "File to update setting in does not exist ${FILENAME}"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# go through lines of file, looking for block that contains setting
|
||||||
|
local SETTING="$1"
|
||||||
|
local LINE_NUM=0
|
||||||
|
while read -r line; do
|
||||||
|
local LINE_NUM=$(( $LINE_NUM + 1 ))
|
||||||
|
if [[ $line == *"$SETTING"* ]]; then
|
||||||
|
local IN_SETTING=1
|
||||||
|
fi
|
||||||
|
if [[ $line == *"$DEFAULT_TRUE"* && "$IN_SETTING" == "1" ]]; then
|
||||||
|
local FOUND=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done < $FILENAME
|
||||||
|
|
||||||
|
if [[ "$FOUND" != "1" ]]; then
|
||||||
|
echo "$DEFAULT_TRUE not found for setting $SETTING in file $FILENAME"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# construct line-aware replacement string
|
||||||
|
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_TRUE}/${DEFAULT_FALSE}/"
|
||||||
|
|
||||||
|
replace "$DEFAULT_TRUE_TO_FALSE" $FILENAME
|
||||||
|
}
|
||||||
|
|
||||||
|
update_setting "$TELEMETRY_ENABLE" src/vs/platform/telemetry/common/telemetryService.ts
|
||||||
|
update_setting "$TELEMETRY_CRASH_REPORTER" src/vs/workbench/electron-browser/main.contribution.ts
|
||||||
|
Loading…
Reference in New Issue
Block a user