mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 11:43:39 +00:00
11 lines
162 B
Bash
11 lines
162 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
ID="$1"
|
||
|
|
||
|
if [ -z "$ID" ]; then
|
||
|
echo "Usage: sys/xx.sh [travis-job-id]"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
curl -L "https://api.travis-ci.org/jobs/${ID}/log.txt?deansi=true"
|