mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-05 06:00:39 +03:00
f805d740bb
Closes #26 * Undo telemetry before build * Update README to clarify telemetry disabling process
11 lines
404 B
Bash
Executable File
11 lines
404 B
Bash
Executable File
# dc.services.visualstudio.com
|
|
# vortex.data.microsoft.com
|
|
TELEMETRY_URLS="(dc\.services\.visualstudio\.com)|(vortex\.data\.microsoft\.com)"
|
|
REPLACEMENT="s/$TELEMETRY_URLS/0\.0\.0\.0/g"
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
grep -rl --exclude-dir=.git -E $TELEMETRY_URLS . | xargs sed -i '' -E $REPLACEMENT
|
|
else
|
|
grep -rl --exclude-dir=.git -E $TELEMETRY_URLS . | xargs sed -i -E $REPLACEMENT
|
|
fi
|