Skip to content

Commit b00801c

Browse files
prep for 0.3.0
1 parent 49183fe commit b00801c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ module.exports = function (grunt) {
232232

233233
function ensureCleanMaster() {
234234
return exec('git symbolic-ref HEAD').then(function (result) {
235-
if (result.stdout.trim() !== 'refs/heads/master') throw new Error('Not on master branch, aborting');
235+
if (result.stdout.trim() !== 'refs/heads/legacy') throw new Error('Not on legacy branch, aborting');
236236
return exec('git status --porcelain');
237237
}).then(function (result) {
238238
if (result.stdout.trim() !== '') throw new Error('Working copy is dirty, aborting');

0 commit comments

Comments
 (0)