ardour/tools/linux_packaging/install.sh
Todd Naugle 5774fdc77f Adding installer scripts and sanityCheck tool for the linux bundle
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8448 d708f5d6-7413-0410-9779-e7cbd77b26cf
2011-01-05 20:32:14 +00:00

10 lines
179 B
Bash
Executable file

#!/bin/sh
# Make sure we have a terminal for the user to see and then run
# the real install script.
if [ -z $WINDOWID ]; then
exec xterm -e ./stage2.run
else
./stage2.run
fi