Changes between Initial Version and Version 1 of Ticket #54670


Ignore:
Timestamp:
Aug 27, 2017, 10:56:35 PM (7 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54670

    • Property Owner set to raimue
    • Property Status changed from new to assigned
    • Property Port MacVim added
    • Property Summary changed from Improve error report for MacVim mvim script for a bad link to MacVim @8.0.snapshot136: Improve error report for MacVim mvim script for a bad link
  • Ticket #54670 – Description

    initial v1  
    11If 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:
    22
     3{{{
    34    while [ -L "$self_path" ]; do
    45        next_path=`readlink $self_path` || { echo "error $? reading link $self_path (are permissions on the link correct?)" 2>&1; exit 2; }
     
    67        self_path=`basename $next_path`
    78    done
     9}}}