From 94bfd0aacd5504854f7d5e938a78f864734e2cb8 Mon Sep 17 00:00:00 2001 From: hugovk Date: Sun, 4 Jan 2015 21:30:50 +0200 Subject: [PATCH] Fix repo name in curl --- build_children.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_children.sh b/build_children.sh index f30118f48..c4ed4ebfa 100755 --- a/build_children.sh +++ b/build_children.sh @@ -1,7 +1,7 @@ #!/bin/bash # Get last child project build number from branch named "latest" -BUILD_NUM=$(curl -s 'https://api.travis-ci.org/repos/Pillow/pillow-wheels/branches/latest' | grep -o '^{"branch":{"id":[0-9]*,' | grep -o '[0-9]' | tr -d '\n') +BUILD_NUM=$(curl -s 'https://api.travis-ci.org/repos/python-pillow/pillow-wheels/branches/latest' | grep -o '^{"branch":{"id":[0-9]*,' | grep -o '[0-9]' | tr -d '\n') # Restart last child project build curl -X POST https://api.travis-ci.org/builds/$BUILD_NUM/restart --header "Authorization: token "$AUTH_TOKEN