@@ -28,7 +28,7 @@ will get displayed and drop it somewhere on your `PATH`.
28
28
For example, if ` $HOME/bin ` is on your ` PATH ` :
29
29
30
30
``` sh
31
- curl -L https://github.com/fgrehm/notify-send-http/releases/download/v0.1 .0/server > $HOME /bin/notify-send-server
31
+ curl -L https://github.com/fgrehm/notify-send-http/releases/download/v0.2 .0/server-linux_amd64 > $HOME /bin/notify-send-server
32
32
chmod +x $HOME /bin/notify-send-server
33
33
```
34
34
@@ -62,7 +62,7 @@ From another machine / VM / Linux Container you'll have to first download the
62
62
client somewhere on the ` PATH ` :
63
63
64
64
``` sh
65
- curl -L https://github.com/fgrehm/notify-send-http/releases/download/v0.1 .0/client | sudo tee /usr/local/bin/notify-send & > /dev/null
65
+ curl -L https://github.com/fgrehm/notify-send-http/releases/download/v0.2 .0/client-linux_amd64 | sudo tee /usr/local/bin/notify-send & > /dev/null
66
66
sudo chmod +x /usr/local/bin/notify-send
67
67
```
68
68
@@ -88,7 +88,7 @@ Download the client to a folder under `$HOME/devstep/bin`:
88
88
``` sh
89
89
DEVSTEP_DIR=" $HOME /devstep/bin"
90
90
mkdir -p $DEVSTEP_DIR
91
- curl -sL https://github.com/fgrehm/notify-send-http/releases/download/v0.1 .0/client > $DEVSTEP_DIR /notify-send
91
+ curl -sL https://github.com/fgrehm/notify-send-http/releases/download/v0.2 .0/client-linux_amd64 > $DEVSTEP_DIR /notify-send
92
92
chmod +x $DEVSTEP_DIR /notify-send
93
93
```
94
94
@@ -110,7 +110,7 @@ environment:
110
110
DOCKER_BRIDGE_IP=$(/sbin/ifconfig docker0 | grep 'inet addr:' | cut -d : -f2 | awk '{ print $1}')
111
111
112
112
# Download binary
113
- curl -sL https://github.com/fgrehm/notify-send-http/releases/download/v0.1 .0/client > /tmp/notify-send && chmod +x /tmp/notify-send
113
+ curl -sL https://github.com/fgrehm/notify-send-http/releases/download/v0.2 .0/client-linux_amd64 > /tmp/notify-send && chmod +x /tmp/notify-send
114
114
115
115
# Start container ready to send notifications
116
116
docker run -ti --rm \
0 commit comments