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: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,17 +211,21 @@ On Windows, use `bash` to run build commands (installed by default with [Git for
211
211
212
212
```ruby
213
213
git clone https://github.com/rdk/p2rank.git && cd p2rank
214
-
./make.sh
214
+
./make.sh # after this, you can use the program by running ./prank.sh or ./distro/prank
215
+
216
+
./make-disro.sh # creates a tar.gz archive with the program in .build/
217
+
# which can be used as a portable binary package
215
218
216
219
./unit-tests.sh # optionally you can run tests to check everything works fine on your machine
217
-
./tests.sh quick # runs further tests
220
+
./tests.sh quick # script that runs further tests
221
+
218
222
```
219
223
You can now run the program using:
220
224
```ruby
221
225
distro/prank # standard mode that is run in production
222
226
./prank.sh # development/training mode
223
227
```
224
-
To use `./prank.sh` (development/training mode) first you need to copy and edit `misc/local-env.sh` into repo root directory (see [training tutorial](https://github.com/rdk/p2rank/blob/develop/documentation/training-tutorial.md#preparing-the-environment)).
228
+
To use `./prank.sh` (development/training mode) first you should copy and edit `misc/local-env.sh` into repo root directory (see [training tutorial](https://github.com/rdk/p2rank/blob/develop/documentation/training-tutorial.md#preparing-the-environment)).
0 commit comments