Skip to content

Commit 9579212

Browse files
author
deathaxe
authored
Disable submitting usage information (#226)
Installing packages for automated tests is unrelated with real usage. Thus prevent Package Control from submitting usage stats.
1 parent 22a4b32 commit 9579212

4 files changed

+4
-4
lines changed

sbin/install_package_control.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ try{
1616

1717
if (-not (test-path $PC_SETTINGS)) {
1818
write-verbose "creating Package Control.sublime-settings"
19-
"{`"ignore_vcs_packages`": true }" | out-file -filepath $PC_SETTINGS -encoding ascii
19+
"{`"ignore_vcs_packages`": true, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding ascii
2020
}
2121

2222
$PCH_PATH = "$STP\0_install_package_control_helper"

sbin/install_package_control.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fi
5050
if [ ! -f "$STP/User/Package Control.sublime-settings" ]; then
5151
echo creating Package Control.sublime-settings
5252
# make sure Pakcage Control does not complain
53-
echo '{"ignore_vcs_packages": true }' > "$STP/User/Package Control.sublime-settings"
53+
echo '{"ignore_vcs_packages": true, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
5454
fi
5555

5656
PCH_PATH="$STP/0_install_package_control_helper"

scripts/install_package_control.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $PC_SETTINGS = "C:\st\Data\Packages\User\Package Control.sublime-settings"
2222

2323
if (-not (test-path $PC_SETTINGS)) {
2424
write-verbose "creating Package Control.sublime-settings"
25-
"{`"auto_upgrade`": false }" | out-file -filepath $PC_SETTINGS -encoding ascii
25+
"{`"auto_upgrade`": false, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding ascii
2626
}
2727

2828
$PCH_PATH = "$STP\0_install_package_control_helper"

scripts/install_package_control.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ ! -f "$STP/User/Package Control.sublime-settings" ]; then
5151
echo creating Package Control.sublime-settings
5252
[ ! -d "$STP/User" ] && mkdir -p "$STP/User"
5353
# make sure Pakcage Control does not complain
54-
echo '{"auto_upgrade": false }' > "$STP/User/Package Control.sublime-settings"
54+
echo '{"auto_upgrade": false, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
5555
fi
5656

5757
PCH_PATH="$STP/0_install_package_control_helper"

0 commit comments

Comments
 (0)