#!/bin/sh
# Make sure that a GNUstep environment is present for GWorkspace.app

if ! test "$GNUSTEP_ROOT"; then
  . /usr/lib/GNUstep/System/Makefiles/GNUstep.sh >/dev/null 2>&1
  openapp GWorkspace.app
else
  openapp GWorkspace.app
fi
