Skip to content

Commit

Permalink
Merge pull request #1076 from rustdevbtw/v1/main
Browse files Browse the repository at this point in the history
fix(install): fix unsafe install script (args passing)
  • Loading branch information
mxcl authored Jan 16, 2025
2 parents 6a195bf + 6c6add3 commit d93124a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modes/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default async function(pkgs: PackageRequirement[], unsafe: boolean) {
# shellcheck source=$ENV_FILE
. "$ENV_FILE"
set +a
exec "$PKGX_DIR/${pkgstr}/v*/bin/${program}" "$ARGS"
exec "$PKGX_DIR/${pkgstr}/v*/bin/${program}" $ARGS
else
pkgx_resolve
fi
Expand Down

0 comments on commit d93124a

Please sign in to comment.