Skip to content

Commit

Permalink
remove strict against null test
Browse files Browse the repository at this point in the history
  • Loading branch information
sporritt committed Dec 9, 2013
1 parent b8c028e commit 67898aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ module.exports = function(grunt) {

grunt.registerTask('update', function() {
var newV = grunt.option("newver");
if (newV === null) {
if (newV ===null) {
grunt.log.error("You must provide the new version: grunt update --newver=X.X.X");
}
else {
Expand Down

0 comments on commit 67898aa

Please sign in to comment.