Skip to content

Commit

Permalink
fix(installers): command arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Nov 24, 2024
1 parent 6312acc commit 19e0fcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/installer.tpl.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Expand-Archive -Path "$TMP_DIR\$TAR_FILE" -DestinationPath $TMP_DIR -Force

# Run the installation command
Write-Host "Installing distillery..."
& "$TMP_DIR\dist" "install ekristen/distillery" @args
& "$TMP_DIR\dist" "install" "ekristen/distillery" @args

# Clean up
Remove-Item -Recurse -Force $TMP_DIR
2 changes: 1 addition & 1 deletion scripts/installer.tpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ TAR_FILE="${FILE_BASENAME}-${VERSION}-${OS}-${ARCH}.tar.gz"
)

tar -xf "$TMP_DIR/$TAR_FILE" -C "$TMP_DIR"
"$TMP_DIR/dist" "install ekristen/distillery" "$@"
"$TMP_DIR/dist" "install" "ekristen/distillery" "$@"

0 comments on commit 19e0fcc

Please sign in to comment.