Skip to content

Instantly share code, notes, and snippets.

@grenade
Created September 26, 2018 13:26
Show Gist options
  • Save grenade/27c38639a38a19489ed1d36f5521b16a to your computer and use it in GitHub Desktop.
Save grenade/27c38639a38a19489ed1d36f5521b16a to your computer and use it in GitHub Desktop.
deployment_task_id=dRak30YeSrq5fRzmgBChFA
task_state=$(curl -s 'https://queue.taskcluster.net/v1/task/${deployment_task_id}/status' | jq -r '.status.state')
while [ "${task_state}" != "completed" ]; do
echo ${task_state}
sleep 60
task_state=$(curl -s 'https://queue.taskcluster.net/v1/task/${deployment_task_id}/status' | jq -r '.status.state')
done;
hg push try -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment