diff --git a/README.md b/README.md index 59a6b6a..e66ad7c 100644 --- a/README.md +++ b/README.md @@ -22,21 +22,21 @@ multirun never attempts to restart one of its children if it crashes. Instead it ### Binary using glibc (Ubuntu, Debian, Red Hat, Centos...) - wget https://github.com/nicolas-van/multirun/releases/download/0.3.0/multirun-ubuntu-0.3.0.tar.gz && \ - tar -zxvf multirun-ubuntu-0.3.0.tar.gz && \ + wget https://github.com/nicolas-van/multirun/releases/download/0.3.0/multirun-ubuntu-0.3.2.tar.gz && \ + tar -zxvf multirun-ubuntu-0.3.2.tar.gz && \ mv multirun /bin && \ - rm multirun-ubuntu-0.3.0.tar.gz + rm multirun-ubuntu-0.3.2.tar.gz ### Binary using musl libc (Alpine) - wget https://github.com/nicolas-van/multirun/releases/download/0.3.0/multirun-alpine-0.3.0.tar.gz && \ - tar -zxvf multirun-alpine-0.3.0.tar.gz && \ + wget https://github.com/nicolas-van/multirun/releases/download/0.3.0/multirun-alpine-0.3.2.tar.gz && \ + tar -zxvf multirun-alpine-0.3.2.tar.gz && \ mv multirun /bin && \ - rm multirun-alpine-0.3.0.tar.gz + rm multirun-alpine-0.3.2.tar.gz ### Sources - git clone --branch 0.3.0 https://github.com/nicolas-van/multirun.git && \ + git clone --branch 0.3.2 https://github.com/nicolas-van/multirun.git && \ cd multirun && \ make && \ cp multirun /bin && \