Created
September 26, 2018 13:26
-
-
Save grenade/27c38639a38a19489ed1d36f5521b16a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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