8 lines
179 B
Bash
Executable file
8 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Travis Webhook
|
|
wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
chmod +x send.sh
|
|
./send.sh ${1} ${WEBHOOK_URL}
|