Skip to content

Commit

Permalink
fix: 🐞 use "shell" in exec file command
Browse files Browse the repository at this point in the history
use "shell" in exec file command
  • Loading branch information
tal-rofe committed Feb 6, 2023
1 parent a2c279f commit 3b3f954
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/commands/use/utils/install-library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ export const installLibraries = async (libraryNames: string[]) => {
await asyncExecFile(npmInfo[2], ['i', '-D', ...transformedLibraryNames], {
cwd: EXLINT_FOLDER_PATH,
timeout: INSTALLATION_TIMEOUT,
shell: true,
});
};

0 comments on commit 3b3f954

Please sign in to comment.