Skip to content

Commit

Permalink
Make x capable of resolving symlinks
Browse files Browse the repository at this point in the history
When bootstrapping from outside of the rust source,
instead of calling 'x' from the absolute path
(like /home/user/rust/x), we should be able to link 'x'
from the rust source to binary paths so it can be used easily.
Before this change, 'x' was not capable of finding 'x.py' when
called from the linked file.

Signed-off-by: onur-ozkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Oct 14, 2023
1 parent 39acbed commit e0fe1d6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions x
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ set -eu
sh -n "$0"

realpath() {
if [ -d "$1" ]; then
CDPATH='' command cd "$1" && pwd -P
local path="$1"
if [ -L "$path" ]; then
readlink -f "$path"
elif [ -d "$path" ]; then
(cd -P "$path" && pwd)
else
echo "$(realpath "$(dirname "$1")")/$(basename "$1")"
echo "$(realpath "$(dirname "$path")")/$(basename "$path")"
fi
}

Expand Down

0 comments on commit e0fe1d6

Please sign in to comment.