Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ apply_setting() {
return 1
fi

# Resolve symlink to real path if necessary
if [[ -L "$file" ]]; then
file=$(readlink -f "$file")
fi

# Ensure the target directory exists just in case (for overwrites)
if [[ $DRY_RUN -eq 0 ]]; then
mkdir -p "$(dirname "$file")"
Expand Down