1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 06:48:39 +11:00

Wrap zasm.sh shebang in /usr/bin/env ; remove comment about BSDs

This commit is contained in:
Keith Stellyes 2019-10-10 12:16:47 -07:00
parent f0502a7a99
commit 5616e9a751

View File

@ -1,6 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
# readlink -f doesn't work with macOS's implementation (BSD in general?)
# readlink -f doesn't work with macOS's implementation
# so, if we can't get readlink -f to work, try python with a realpath implementation
ABS_PATH=$(readlink -f "$0" || python -c "import sys, os; print(os.path.realpath('$0'))")