找到这个地方(全局搜索:source="{source}")")
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
把 source="{source}")" 改成 source="{source}")"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi