Skip to content

Commit

Permalink
fix: ensure space in installed package
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Feb 3, 2025
1 parent 07e8ba2 commit 4009ebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ function setUrl() {
let code = firstLine

if (addingToApp) {
code = "mix igniter.install"
code = "mix igniter.install "
packages.unshift("ash")
} else {
if (packages.length !== 0) {
Expand All @@ -605,7 +605,7 @@ function setUrl() {
packages.unshift(`&& cd ${appNameSafe}`)
}

limit = Math.max(firstLine.length - 2, 45)
limit = Math.max(firstLine.length - 2, 45)

args.forEach((arg) => {
packages.push(arg)
Expand Down

0 comments on commit 4009ebe

Please sign in to comment.