From 7da025b1ddf05634fbc6715ba1b777592ff10517 Mon Sep 17 00:00:00 2001 From: bmacnaughton Date: Tue, 28 Nov 2023 20:31:03 -0800 Subject: [PATCH] use + instead of ; --- test/basics.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/basics.test.js b/test/basics.test.js index c0bd49f..57505a6 100644 --- a/test/basics.test.js +++ b/test/basics.test.js @@ -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) {