Skip to content

Commit 764f3e7

Browse files
committed
Update link to github releases.
1 parent 3e51b89 commit 764f3e7

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

readme.mkd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ To use the latest release/pre-built jars:
6969
* If not, a you'll need a platform-specific installation step, like `sudo apt install openjdk-8-jre` on Ubuntu
7070
* Optional: Install [watchman](https://facebook.github.io/watchman/)
7171
* `mirror` will use the built-in Java `WatchService` API if you don't have watchman installed, and it will basically work, but the JDK-provided `WatchService` implementations are not that great: the Linux implementation is buggy (see [JDK-8145981](https://bugs.openjdk.java.net/browse/JDK-8145981)), and the Mac implementation uses polling.
72-
* Download the latest [mirror](http://repo.joist.ws/mirror) and [mirror-all.jar](http://repo.joist.ws/mirror-all.jar) to your home directory (or some other directory on your path, e.g. `~/bin`)
73-
* `wget http://repo.joist.ws/mirror-all.jar ~/`
74-
* `wget http://repo.joist.ws/mirror ~/`
72+
* Download the latest [mirror](https://github.com/stephenh/mirror/releases/latest/download/mirror) and [mirror-all.jar](http://github.com/stephenh/mirror/releases/latest/mirror-all.jar) to your home directory (or some other directory on your path, e.g. `~/bin`)
73+
* `wget https://github.com/stephenh/mirror/releases/latest/mirror-all.jar ~/`
74+
* `wget https://github.com/stephenh/mirror/releases/latest/download/mirror ~/`
7575
* Make the `mirror` file executable
7676
* `chmod u+x mirror`
7777
* Copy both to your remote home directory (or some other directory on your path, e.g. `~/bin`)

release

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ set -e
44

55
./gradlew clean check shadowJar \
66
&& cp build/libs/mirror-all.jar ~/ \
7-
&& scp build/libs/mirror-all.jar sh10:~/ \
8-
&& scp build/libs/mirror-all.jar joist.ws:/var/www/joist.repo/
7+
&& scp build/libs/mirror-all.jar sh10:~/
98

109
version=$(git describe --tags --dirty)
1110
echo $version > .version
12-
scp .version joist.ws:/var/www/joist.repo/mirror-version
11+
# scp .version joist.ws:/var/www/joist.repo/mirror-version
1312
rm .version
1413

15-
scp mirror joist.ws:/var/www/joist.repo/mirror
14+
# scp mirror joist.ws:/var/www/joist.repo/mirror
1615

0 commit comments

Comments
 (0)