Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
add value if undefined (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Macdonald authored and Thomas Kelly committed Jul 31, 2017
1 parent 934887f commit a26e69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/slate-cli/generators/new-theme/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var mainGenerator = generators.Base.extend({
}

this.environments = env;
this.defaultEnv = answers.defaultEnv;
this.defaultEnv = answers.defaultEnv || 'development';
this.initGit = answers.initGit;
this.repositoryUrl = answers.repositoryUrl;

Expand Down

0 comments on commit a26e69e

Please sign in to comment.