mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 23:20:40 +00:00
11 lines
162 B
Bash
Executable File
11 lines
162 B
Bash
Executable File
#!/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"
|