diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-05-01 18:25:30 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-05-01 18:25:30 -0400 |
| commit | 364638e3e665feee1a5eb431fe5a6c8755406719 (patch) | |
| tree | b8b706920f85b2f668afb6417756eb9c1d92942b | |
| parent | 9e3110f8a56c4f6afee785b300b19ccfbee97512 (diff) | |
show how to set PATH on Windows
| -rw-r--r-- | static/install.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/install.html b/static/install.html index 2d9520da..ac8f3ca1 100644 --- a/static/install.html +++ b/static/install.html @@ -139,6 +139,10 @@ unzip platform-tools_r30.0.0-linux.zip</pre> <pre>export PATH="$PWD/platform-tools:$PATH"</pre> + <p>On Windows:</p> + + <pre>set PATH=%cd%\platform-tools;%PATH%</pre> + <p>Sample output from <code>fastboot --version</code> afterwards:</p> <pre>fastboot version 30.0.0-6374843 |
