Fix realpath posix issue (#2069)

Replaced usage of "realpath" function with posix-friendly syntax.  Tested on Mac and worked well.
6.19.x
Tyler Jewell 2016-08-13 07:28:42 -07:00 committed by GitHub
parent 54f7432367
commit 1ec9dcd301
1 changed files with 1 additions and 1 deletions

2
che.sh
View File

@ -205,7 +205,7 @@ has_docker_for_windows_client(){
}
get_full_path() {
echo $(realpath $1)
echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"
}
convert_windows_to_posix() {