Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Jul 31, 2024
1 parent ca9fcd0 commit b2a8e6d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/shared/copy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// let cpr = require('cpr')
let { cp, mkdirSync } = require('fs')
let { dirname } = require('path')
let { sync: symlinkOrCopy } = require('symlink-or-copy')
Expand All @@ -17,7 +16,6 @@ module.exports = function copy (source, destination, params, callback) {
callback()
}
else {
// cpr(source, destination, { overwrite: true }, callback)
cp(source, destination, { recursive: true, force: true }, callback)
}
}
Expand Down
1 change: 0 additions & 1 deletion test/integration/_shared.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
let { dirname, join } = require('path')
let { cp, existsSync } = require('fs')
// let cp = require('cpr')
let { globSync } = require('glob')
let { pathToUnix } = require('@architect/utils')
let { destroyPath } = require('../../src/lib')
Expand Down
1 change: 0 additions & 1 deletion test/integration/default/shared-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ let {
renameSync,
writeFileSync,
} = require('fs')
// let cp = require('cpr')
let test = require('tape')
let {
resetAndCopyShared,
Expand Down
1 change: 0 additions & 1 deletion test/integration/symlink/shared-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ let {
renameSync,
writeFileSync,
} = require('fs')
// let cp = require('cpr')
let test = require('tape')
let {
resetAndCopyShared,
Expand Down

0 comments on commit b2a8e6d

Please sign in to comment.