mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-07 19:29:19 +00:00
9 lines
276 B
Bash
9 lines
276 B
Bash
#!/bin/sh
|
|
|
|
release_url="https://api.github.com/repos/ncarlier/webhookd/releases/latest"
|
|
download_url=`curl -s $release_url | grep browser_download_url | head -n 1 | cut -d '"' -f 4`
|
|
|
|
sudo curl -o /usr/local/bin/webhookd -L $download_url
|
|
sudo chmod +x /usr/local/bin/webhookd
|
|
|