Skip to content

Commit

Permalink
test: Fix typo in install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
hankei6km committed May 2, 2024
1 parent d5fc53f commit 28f059a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google-clasp/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ install_packages() {
trap 'rm -rf "${TEMP_CACHE}"' EXIT

echo "Installing npm package: ${TARGET_PACKAGE}@${TARGET_VERSION}"
npm install -npm install --global --omit=dev --no-progress --cache "${TEMP_CACHE}" "${TARGET_PACKAGE}@${TARGET_VERSION}"
npm install --global --omit=dev --no-progress --cache "${TEMP_CACHE}" "${TARGET_PACKAGE}@${TARGET_VERSION}"
if test "${TARGET_TYPES_PACKAGE}" != ""; then
echo "Installing npm package: ${TARGET_TYPES_PACKAGE}@${TARGET_TYPES_VERSION}"
npm install --global --omit=dev --no-progress --cache "${TEMP_CACHE}" "${TARGET_TYPES_PACKAGE}@${TARGET_TYPES_VERSION}"
Expand Down

0 comments on commit 28f059a

Please sign in to comment.