Skip to content

Commit

Permalink
Merge pull request #3734 from f-hj/development
Browse files Browse the repository at this point in the history
Fix #3669
  • Loading branch information
wallet77 authored Jun 25, 2018
2 parents 66d5e06 + 792cef8 commit b6e0650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/API/Modules/Modularizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ var Rollback = {
// Delete failing module
require('shelljs').rm('-r', module_path);
// Restore working version
require('shelljs').cp('-r', backup_path, module_path);
require('shelljs').cp('-r', backup_path, cst.DEFAULT_MODULE_PATH);

var proc_path = path.join(module_path, 'node_modules', canonic_module_name);
var package_json_path = path.join(proc_path, 'package.json');
Expand Down

0 comments on commit b6e0650

Please sign in to comment.