Skip to content

Commit

Permalink
fix(install): fix unsafe install script (args passing)
Browse files Browse the repository at this point in the history
Signed-off-by: Rajdeep Malakar <[email protected]>
  • Loading branch information
rustdevbtw committed Jan 15, 2025
1 parent 6a195bf commit 6c6add3
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 6c6add3

Please sign in to comment.