Skip to content

Commit cc19e42

Browse files
okineadevo-murphy
andcommitted
chore: bypass execution policy in the installation command
Closes #3 Co-Authored-By: Dmytro Yaroshenko <thehelixpg@gmail.com>
1 parent c8f505f commit cc19e42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
To install Android SDK Platform Tools (ADB, Fastboot) on Windows, simply run the following command in PowerShell:
88

99
```powershell
10-
powershell -c "irm cutt.ly/platform-tools | iex"
10+
powershell -ExecutionPolicy Bypass -c "irm cutt.ly/platform-tools | iex"
1111
```
1212

1313
This command downloads and executes the PowerShell script, which automatically installs the required tools from the [original Google package](https://dl.google.com/android/repository/platform-tools-latest-windows.zip).

site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h3 aria-describedby="main-title">
179179
<div class="install-command" role="region" aria-labelledby="install-label">
180180
<pre
181181
aria-label="Copy install command"
182-
><code id="install">powershell -c "irm cutt.ly/platform-tools | iex"</code></pre>
182+
><code id="install">powershell -ExecutionPolicy Bypass -c "irm cutt.ly/platform-tools | iex"</code></pre>
183183
<button
184184
onclick="copyCode()"
185185
aria-label="Copy install command to clipboard"

0 commit comments

Comments
 (0)