Skip to content

Commit

Permalink
fix the 'npm run test-integration' command for Windows OS
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelbyaj committed May 15, 2024
1 parent 57a5d25 commit c06b4b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/__tests__/integration/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = async function (globalConfig, projectConfig) {
const cwd = process.cwd();
try {
process.chdir(pkg.resolve('npm'));
await exec(`npm pack --pack-destination '${packDest}'`);
await exec(`npm pack --pack-destination ${packDest}`);
} finally {
process.chdir(cwd);
}
Expand Down

0 comments on commit c06b4b1

Please sign in to comment.