mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-13 17:06:31 +01:00
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8448 d708f5d6-7413-0410-9779-e7cbd77b26cf
10 lines
179 B
Bash
Executable file
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
|