mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
13 lines
308 B
Bash
13 lines
308 B
Bash
#!/bin/sh
|
|
|
|
# Find the installation path. We assume that this script is placed in the installation directory.
|
|
INSTALL_PATH=$(dirname "$_")
|
|
#echo "Invoking ResInsight in path: $INSTALL_PATH"
|
|
|
|
# Change to application directory
|
|
cd "$INSTALL_PATH"
|
|
|
|
# Start the application
|
|
CmdName=ResInsight
|
|
exec ./$CmdName "$@"
|