Skip to content

Commit

Permalink
fix(qorph): fix symlinks processing
Browse files Browse the repository at this point in the history
  • Loading branch information
DakEnviy committed Apr 23, 2022
1 parent 798f37f commit dcf9b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qorph
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def process_path(path, installed_entries, ignored_entries):
return False

if not os.path.isdir(path) or os.path.islink(path):
return path not in installed_entries
return os.path.realpath(path) not in installed_entries

if path not in installed_entries and path != '/':
return True
Expand Down

0 comments on commit dcf9b03

Please sign in to comment.