application/vdb
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 03 Oct 2018 15:52:44 +0100
changeset 115 0dd989ce3ae7
parent 43 c98aa29401f7
permissions -rwxr-xr-x
Cleanup default window titles ...namely: * rename class-side from `#windowTitle` to `#defaultWindowTitle` (because really, it's just a default) * make sure that all overriden `#defaultWindowTitle` methods use resources to properly support i19n.

#!/bin/bash
#
# Startup script for Visual / VM Debugger
#

VDB_BINDIR=$(dirname $(realpath $0))

if [ -f "$VDB_BINDIR/vdb.so" ]; then
    # Standalone excutable
    exec "$VDB_BINDIR/vdb.so" ${1+"$@"}
elif [ -x "$VDB_BINDIR/../../../stx/projects/smalltalk/smalltalk" ]; then
    # In build tree 
    exec "$VDB_BINDIR/../../../stx/projects/smalltalk/smalltalk" \
            --load jv:vdb/application --run VDBStartup ${1+"$@"}
else
    echo "erorr: could not find vdb.so"
    exit 1
fi