Skip to content

Commit

Permalink
build: fix tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker committed Aug 4, 2018
1 parent 6609544 commit be0d94e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/travis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export async function initTravis({
await travisClient.post(`user/${travisUser.id}/sync`)
while ((await getCurrentTravisUser({ travisClient })).is_syncing) {
console.log('Waiting for sync to finish...')
await new Promise(resolve => setTimeout(resolve, 1000))
await new Promise<void>(resolve => setTimeout(resolve, 1000))
}

console.log(`Activating repository at https://travis-ci.org/sourcegraph/${repoName}`)
Expand Down

0 comments on commit be0d94e

Please sign in to comment.