mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[platform] fixes nasty typos in Unix startup script (IDEA-151688)
This commit is contained in:
@@ -8,13 +8,13 @@
|
||||
message()
|
||||
{
|
||||
TITLE="Cannot start @@product_full@@"
|
||||
if [ -n `which zenity` ]; then
|
||||
if [ -n "`which zenity`" ]; then
|
||||
zenity --error --title="$TITLE" --text="$1"
|
||||
elif [ -n `which kdialog` ]; then
|
||||
elif [ -n "`which kdialog`" ]; then
|
||||
kdialog --error --title "$TITLE" "$1"
|
||||
elif [ -n `which xmessage` ]; then
|
||||
elif [ -n "`which xmessage`" ]; then
|
||||
xmessage -center "ERROR: $TITLE: $1"
|
||||
elif [ -n `which notify-send` ]; then
|
||||
elif [ -n "`which notify-send`" ]; then
|
||||
notify-send "ERROR: $TITLE: $1"
|
||||
else
|
||||
echo "ERROR: $TITLE\n$1"
|
||||
|
||||
Reference in New Issue
Block a user