chore: fix tag cleanup (#16353)

This commit is contained in:
Shelley Vohr 2019-01-10 13:42:42 -08:00 committed by GitHub
parent 2acf9ac72f
commit d0ae89befa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ async function deleteTag (tag, targetRepo) {
await octokit.git.deleteRef({
owner: 'electron',
repo: targetRepo,
ref: tag
ref: `tags/${tag}`
})
console.log(`${pass} successfully deleted tag ${tag} from ${targetRepo}`)
} catch (err) {