remove full path from windows gpg command (see #3893#comment:7)
traumschule

traumschule commited on 2018-08-22 09:04:34
Zeige 1 geänderte Dateien mit 3 Einfügungen und 7 Löschungen.

... ...
@@ -99,15 +99,12 @@
99 99
     <p>Once it's installed, use GnuPG to import the key that signed your
100 100
     package. In order to verify the signature you will need to type a few commands
101 101
     in windows command-line, <i>cmd.exe</i>.
102
-    <p>Unless you edit your PATH environment variable, you will need to tell Windows
103
-    the full path to the GnuPG program. If you installed GnuPG with the default values, the path should be
104
-    something like this: <i>C:\Program Files\Gnu\GnuPg\gpg.exe</i>.</p>
105 102
     <p>The Tor Browser team signs Tor Browser releases. Import its key
106 103
     (0x4E2C6E8793298290) by starting <i>cmd.exe</i> and typing:</p>
107
-    <pre>"C:\Program Files\Gnu\GnuPg\gpg.exe" --keyserver pool.sks-keyservers.net --recv-keys 0x4E2C6E8793298290</pre>
104
+    <pre>gpg.exe --keyserver pool.sks-keyservers.net --recv-keys 0x4E2C6E8793298290</pre>
108 105
     <p>After importing the key, you can verify that the fingerprint
109 106
     is correct:</p>
110
-    <pre>"C:\Program Files\Gnu\GnuPg\gpg.exe" --fingerprint 0x4E2C6E8793298290</pre>
107
+    <pre>gpg.exe --fingerprint 0x4E2C6E8793298290</pre>
111 108
     <p>You should see:</p>
112 109
     <pre>
113 110
 pub   rsa4096/0x4E2C6E8793298290 2014-12-15 [C] [expires: 2020-08-24]
... ...
@@ -121,8 +118,7 @@ sub   rsa4096/0xEB774491D9FF06E2 2018-05-26 [S] [expires: 2020-09-12]
121 118
     <p>To verify the signature of the package you downloaded, you will need
122 119
     to download the ".asc" file as well. Assuming you downloaded the
123 120
     package and its signature to your Desktop, run:</p>
124
-    <pre>"C:\Program Files\Gnu\GnuPg\gpg.exe" --verify \
125
-    C:\Users\Alice\Desktop\torbrowser-install-<version-torbrowserbundle>_en-US.exe.asc</pre>
121
+    <pre>gpg.exe --verify C:\Users\Alice\Desktop\torbrowser-install-<version-torbrowserbundle>_en-US.exe.asc</pre>
126 122
     <p>Please substitute "Alice" with your own username.</p>
127 123
     <p>The output should say "Good signature": </p>
128 124
     <pre>
129 125