Skip to content

Commit

Permalink
Merge pull request #1201 from siiky/fix/lam-1194/updater-extractor
Browse files Browse the repository at this point in the history
LAM-1194 fix: extractor clean-up step
  • Loading branch information
RafaelTaranto authored Oct 21, 2024
2 parents 6b2636e + bee3adc commit 5ff9a49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/update/extractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Extractor.prototype._extractTree = function _extractTree (cb) {

Extractor.prototype._cleanUp = function _cleanUp (cb) {
console.log(`rm -rf ${this.rootPath}`)
cp.execFileSync('rm', ['-rf', this.rootPath], null, cb)
cp.execFile('rm', ['-rf', this.rootPath], null, cb)
}

Extractor.prototype._saveSignatures = function _saveSignatures (cb) {
Expand Down

0 comments on commit 5ff9a49

Please sign in to comment.