Skip to content

Commit

Permalink
Fix typo in getScript (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobrippling authored and typicode committed Jan 14, 2020
1 parent 5c26474 commit e84f407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/installer/__tests__/__snapshots__/getScript.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ case $packageManager in
\\"npm\\") run_command npx --no-install;;
\\"pnpm\\") run_command pnpx --no-install;;
\\"yarn\\") run_command yarn run --silent;;
\\"*\\") echo \\"Unknow package manager: $packageManager\\"; exit 0;;
\\"*\\") echo \\"Unknown package manager: $packageManager\\"; exit 0;;
esac
"
`;
2 changes: 1 addition & 1 deletion src/installer/getScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ case $packageManager in
"npm") run_command npx --no-install;;
"pnpm") run_command pnpx --no-install;;
"yarn") run_command yarn run --silent;;
"*") echo "Unknow package manager: $packageManager"; exit 0;;
"*") echo "Unknown package manager: $packageManager"; exit 0;;
esac
`

Expand Down

0 comments on commit e84f407

Please sign in to comment.