From cd0f03e4b6f596529db12dbd2783a62e806e5296 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 7 Mar 2019 11:32:37 -0500 Subject: [PATCH] chore(scripts): fix typo of hotfix --- .scripts/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/common.js b/.scripts/common.js index eefc254ccc..5cf8d40be4 100644 --- a/.scripts/common.js +++ b/.scripts/common.js @@ -37,7 +37,7 @@ function checkGit(tasks) { { title: 'Check current branch', task: () => execa.stdout('git', ['symbolic-ref', '--short', 'HEAD']).then(branch => { - if (branch.indexOf('release') === -1 && branch.indexOf('hofix') === -1) { + if (branch.indexOf('release') === -1 && branch.indexOf('hotfix') === -1) { throw new Error(`Must be on a "release" or "hotfix" branch.`); } })