Skip to content
Snippets Groups Projects
Commit e6e0323a authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix launch.sh script when run from absolute path. fixes #3665

parent 8d4a0dd2
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
BASE=`pwd`/`dirname $0`
if [[ $0 == /* ]]; then
BASE=`dirname $0`
else
BASE=`pwd`/`dirname $0`
fi
OS=`uname -s`
if [ "x${OS}" == "xDarwin" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment