You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backup-windows.ps1
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,19 +9,43 @@ Write-Output ""
9
9
pause
10
10
# Corrects the cwd if it's different than the script directory
11
11
Set-Location-Path $PSScriptRoot
12
+
# Ask the user if they want to download the latest ADB platform tools from Google
13
+
# This is done to always have the latest version and lessen the incentive to slip in malware into the repository while still respecting the user's privacy
14
+
# On Linux and macOS adb is managed by the package manager.
15
+
$downloadAdb=Read-Host"Do you want to download the latest dependencies (adb)? This will connect you to Google's servers. You can safely decline. (y/n)"
0 commit comments