[PR #371] [MERGED] Fix shebang line in install script #351

Closed
opened 2026-05-05 03:46:28 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ultimatepp/ultimatepp/pull/371
Author: @klugier
Created: 2/21/2026
Status: Merged
Merged: 2/23/2026
Merged by: @mirek-fidler

Base: masterHead: klugier/ubuntu-25-04-install-fix


📝 Commits (1)

  • e879985 Fix shebang line in install script

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 uppbox/MakePosixInstall/scripts.cpp (+1 -1)

📄 Description

The install script doesn't work on Ubuntu 25.04. It generates following error:

./install: 75: bad substituion

The reason of that error is that we incorrect sheban in our script that can not force the script execution under bash:

##!/usr/bin/env bash

It should be:

#!/usr/bin/env bash

If we won't release soon this should be in hotfix release for 2025.1.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ultimatepp/ultimatepp/pull/371 **Author:** [@klugier](https://github.com/klugier) **Created:** 2/21/2026 **Status:** ✅ Merged **Merged:** 2/23/2026 **Merged by:** [@mirek-fidler](https://github.com/mirek-fidler) **Base:** `master` ← **Head:** `klugier/ubuntu-25-04-install-fix` --- ### 📝 Commits (1) - [`e879985`](https://github.com/ultimatepp/ultimatepp/commit/e879985dfed150273024de789d060d1f6bb5d353) Fix shebang line in install script ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `uppbox/MakePosixInstall/scripts.cpp` (+1 -1) </details> ### 📄 Description The install script doesn't work on Ubuntu 25.04. It generates following error: ``` ./install: 75: bad substituion ``` The reason of that error is that we incorrect sheban in our script that can not force the script execution under bash: ``` ##!/usr/bin/env bash ``` It should be: ``` #!/usr/bin/env bash ``` If we won't release soon this should be in hotfix release for 2025.1. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 03:46:28 -06:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/ultimatepp#351
No description provided.