Skip to content

Commit 58f878a

Browse files
committed
try newer bundler
1 parent 96c7f62 commit 58f878a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
node-version: [ 16.x, 18.x, 20.x ]
18+
node-version: [ 16.x, 18.x, 20.x, 22.x ]
1919
os: [ windows-latest, ubuntu-latest, macOS-latest ]
2020

2121
# Go
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Set up bundle
4646
run: |
47-
gem install bundler -v 1.17.3 # Bundler 2.x breaks test lockfile
47+
gem install bundler -v 2.4.22 # 2.5+ breaks
4848
bundle config jobs 4
4949
bundle config retry 3
5050

src/shared/copy.js

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ module.exports = function copy (source, destination, params, callback) {
1717
callback()
1818
}
1919
else {
20-
console.log('>>>> RUNNING cp', source, destination)
2120
// cpr(source, destination, { overwrite: true }, callback)
2221
cp(source, destination, { recursive: true }, callback)
2322
}

0 commit comments

Comments
 (0)