diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-05-01 19:02:58 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-05-01 19:03:56 -0400 |
| commit | 1f622077733ac4abd9d378cadd16c01b069a7cd1 (patch) | |
| tree | 9eec1e9363a217277c51394a91ea926bc1b8ea72 /static/install.html | |
| parent | 1d051e612575c41f74a97e9f30275140be7510a1 (diff) | |
use PowerShell rather than cmd.exe
Diffstat (limited to 'static/install.html')
| -rw-r--r-- | static/install.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/static/install.html b/static/install.html index 73229b5d..1c13c132 100644 --- a/static/install.html +++ b/static/install.html @@ -105,6 +105,9 @@ from the <a href="https://developers.google.com/android/ota">full update package page</a>.</p> + <p>These instructions use command-line tools. On Windows, use PowerShell rather than + the legacy Command Prompt.</p> + <h3 id="obtaining-fastboot"> <a href="#obtaining-fastboot">Obtaining fastboot</a> </h3> @@ -148,7 +151,7 @@ unzip platform-tools_r30.0.0-linux.zip</pre> <p>On Windows:</p> - <pre>set PATH=%cd%\platform-tools;%PATH%</pre> + <pre>$env:Path = "$pwd\platform-tools;$env:Path"</pre> <p>Sample output from <code>fastboot --version</code> afterwards:</p> |
