Skip to content

Commit

Permalink
hotfix(rebase): Fixed problem with rebase and released 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pilsy committed Jun 27, 2014
1 parent 6c35d5d commit 8bc1e0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/rebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ moduleLdr.on( 'modulesLoaded', function() {
}
],
function shutdown( err ) {
if ( err === null ) {
if ( err === null || err === undefined ) {
console.log( 'Mongo Database is rebased' );
process.exit( 0 );
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "clever-odm",
"description": "CleverStack ODM (NoSQL) Module",
"version": "1.0.3",
"version": "1.0.4",
"main": "module.js",
"author": {
"name": "CleverStack",
Expand Down

0 comments on commit 8bc1e0c

Please sign in to comment.