mirror of
https://github.com/PegaProx/project-pegaprox.git
synced 2026-04-25 10:05:56 +03:00
[GH-ISSUE #100] deploy script not working #75
Labels
No labels
Approved
Q2-3 2026 Development
bug
documentation
enhancement
help wanted
invalid
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/project-pegaprox-PegaProx#75
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dyvyak on GitHub (Feb 28, 2026).
Original GitHub issue: https://github.com/PegaProx/project-pegaprox/issues/100
Originally assigned to: @mkellermann97 on GitHub.
I'm trying to install using deploy script on Ubuntu 24.04.4 LTS but in step:
Step 6/6: Configuring Service
═══════════════════════════════════════════════════════════════════════════
Select access port:
script doesn't wait for input but ends right away.
Matej
@mkellermann97 commented on GitHub (Feb 28, 2026):
Hey Matej,
thanks for reporting! The issue is that when running the script via
curl ... | sudo bash, stdin is the pipe stream (the script content itself) rather than the terminal. Soreadgets an immediate EOF and skips the prompt.Fixed in 5658437 — the
readcalls now explicitly read from/dev/tty.If you pull the latest
mainit should work. Alternatively you can use--no-interactiveor--port=5000to skip the prompt entirely:Regards,
Marcus