Changes between Initial Version and Version 1 of Ticket #54670
- Timestamp:
- Aug 27, 2017, 10:56:35 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #54670
- Property Owner set to raimue
-
Property
Status
changed from
new
toassigned
- Property Port MacVim added
-
Property
Summary
changed from
Improve error report for MacVim mvim script for a bad link
toMacVim @8.0.snapshot136: Improve error report for MacVim mvim script for a bad link
-
Ticket #54670 – Description
initial v1 1 1 If a symlink to the mvim script has the wrong permissions (sadly easy to do on OS X), it fails with some rather confusing error messages. The change below fixes this: 2 2 3 {{{ 3 4 while [ -L "$self_path" ]; do 4 5 next_path=`readlink $self_path` || { echo "error $? reading link $self_path (are permissions on the link correct?)" 2>&1; exit 2; } … … 6 7 self_path=`basename $next_path` 7 8 done 9 }}}