Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

realpath -s not supported on MacOS Sequoia #2238

Open
rcastley opened this issue Oct 9, 2024 · 0 comments
Open

realpath -s not supported on MacOS Sequoia #2238

rcastley opened this issue Oct 9, 2024 · 0 comments

Comments

@rcastley
Copy link

rcastley commented Oct 9, 2024

Please check the open issues for this repository to verify that the same issue/bug has not been already reported.

If you see the bug being already reported, please upvote and comment on the existing issue instead of opening a new one. If you notice a bug/issue which is not the same as yours but is related, create a new one and link to the existing bug/issue.

Describe the bug

make-release.sh using realpath -s which is not supported on MacOS Sequoia.

To Reproduce

Run the make-release.sh script on MacOS Sequoia

Suggested Fix

Replace:

SCRIPT_DIR=$(dirname $(realpath -s $0))

with

SCRIPT_PATH=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/$(basename "${BASH_SOURCE[0]}")
SCRIPT_DIR="$(dirname $SCRIPT_PATH)"

Environment

MacOS Sequoia

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant