Skip to content

Commit

Permalink
use + instead of ;
Browse files Browse the repository at this point in the history
  • Loading branch information
bmacnaughton committed Nov 29, 2023
1 parent cd04ef2 commit 7da025b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/basics.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function getCommonFormatUx(rootdir) {
// 6644 -rw-r--r-- test/index.test.js
// and we convert to "4096 test d" and "6644 test/index.test.js f" so common processing
// with results of the file-sizes.ps1 script.
const r = cp.execSync(`find ${rootdir} -exec ${cmd} {} ';'`);
const r = cp.execSync(`find ${rootdir} -exec ${cmd} {} +`);
const lines = r.toString().split('\n');
const items = [];
for (const line of lines) {
Expand Down

0 comments on commit 7da025b

Please sign in to comment.