Skip to content

Commit e7a3095

Browse files
authored
fix(command): Fix install of @benmvp/cli w/ integrate (#52)
The intention with 555a184 was to install `@benmvp/cli` as a dev dependency in the integration tests project, but I just updated the `echo` string now the actual command. 🤦🏾‍♂️ Verified this in `url-lib` by running `npm pack` in this repo and manually installing it in `url-lib` and running its integration tests. 🤞🏾
1 parent 555a184 commit e7a3095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/integrate/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pushd $TEMP_INTEGRATION_PATH
3030
# Note for integration tests for @benmvp/cli specifically this *should* overwrite
3131
# @benmvp/cli dependency from registry with the tarball
3232
echo -e "npm install && npm install --save-dev @benmvp/cli $TARBALL_FILE_PATH\n"
33-
npm install && npm install --save-dev $TARBALL_FILE_PATH
33+
npm install && npm install --save-dev @benmvp/cli $TARBALL_FILE_PATH
3434

3535
# Verify node modules were installed
3636
if [ ! -d "$TEMP_INTEGRATION_PATH/node_modules" ]; then

0 commit comments

Comments
 (0)