Sha256: e0fb8d377edc638825bfa8812a7bb3f814494d57ff96ed03d51f66e2e6e6e7b7
Contents?: true
Size: 425 Bytes
Versions: 7
Compression:
Stored size: 425 Bytes
Contents
#!/bin/sh script="$0" if test -L "$script"; then # readlink is not POSIX, but present on all platforms we care about. # On macOS, it does not support the recursive following of symlinks, # so we only resolve one link and hope for the best. script="$(readlink -f "$script" 2>/dev/null || readlink "$script")" fi root="$(dirname "$script")/.." exec "$root/libexec/python3.10" "$root/libexec/lilypond-book" "$@"
Version data entries
7 entries across 7 versions & 1 rubygems