cmake: Fix inconsistent indentation if install-share.sh.

There was a space followed by a tab.
This commit is contained in:
Petr Zemek 2018-05-19 20:10:53 +02:00
parent ee51eb6b15
commit 60fdb6f717

View File

@ -26,7 +26,7 @@ INSTALL_PATH="$1"
# Convert from Windows to Unix path on Windows.
case "$(uname -s)" in
*Windows*|*CYGWIN*|*MINGW*|*MSYS*)
INSTALL_PATH="$(echo "/$INSTALL_PATH" | sed -e 's/\\/\//g' -e 's/://')"
INSTALL_PATH="$(echo "/$INSTALL_PATH" | sed -e 's/\\/\//g' -e 's/://')"
;;
esac