From af4abb94d11aa18746728f83d355a72075f52b42 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 6 Oct 2023 15:14:12 -0600 Subject: [PATCH] test: mixed up scripts --- test/integration/sf.integration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/sf.integration.ts b/test/integration/sf.integration.ts index 26847981..35be72e5 100644 --- a/test/integration/sf.integration.ts +++ b/test/integration/sf.integration.ts @@ -124,7 +124,7 @@ describe('sf integration', () => { console.log('Testing that installation was successful...') // It's important to use run.js instead of sf - otherwise it will resolve to the global version of sf - sf = join(extractedLocation, 'bin', process.platform === 'win32' ? 'run.js' : 'run.cmd') + sf = join(extractedLocation, 'bin', process.platform === 'win32' ? 'run.cmd' : 'run.js') // set the bin path so that plugin-update thinks this is updatable // This would typically be set by the sf executable that's included in the tarball // but since we're using bin/run.js to avoid the global sf, we need to set it manually