diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-12-13 16:14:06 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-12-13 16:23:59 +0100 |
commit | 9b09b4705583458c716ab1a3d00ddeeaefaf2964 (patch) | |
tree | c78247400bbab84c29f962e58ac36f26df538366 | |
parent | c2a3a00516fb600e5d2e9127119a703f33d2def2 (diff) | |
download | VeraCrypt-9b09b4705583458c716ab1a3d00ddeeaefaf2964.tar.gz VeraCrypt-9b09b4705583458c716ab1a3d00ddeeaefaf2964.zip |
Linux: fix failure to install GUI version under recent versions of KDE.
-rw-r--r-- | src/Setup/Linux/veracrypt_install_template.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Setup/Linux/veracrypt_install_template.sh b/src/Setup/Linux/veracrypt_install_template.sh index 533bd50f..5d572976 100644 --- a/src/Setup/Linux/veracrypt_install_template.sh +++ b/src/Setup/Linux/veracrypt_install_template.sh @@ -93,7 +93,7 @@ show_message() else if [ $KTERM -eq 1 ] then - konsole --title 'VeraCrypt Setup' --caption 'VeraCrypt Setup' -e sh -c "echo $*; read A" + konsole --title 'VeraCrypt Setup' -e sh -c "echo $*; read A" fi fi fi @@ -1073,7 +1073,7 @@ then else if [ $KTERM -eq 1 ] then - exec konsole --title 'VeraCrypt Setup' --caption 'VeraCrypt Setup' -e sh -c "echo Installing package...; $SUDO $PACKAGE_INSTALLER $PACKAGE_INSTALLER_OPTS $PACKAGE; rm -f $PACKAGE; echo; echo Press Enter to exit...; read A" + exec konsole --title 'VeraCrypt Setup' -e sh -c "echo Installing package...; $SUDO $PACKAGE_INSTALLER $PACKAGE_INSTALLER_OPTS $PACKAGE; rm -f $PACKAGE; echo; echo Press Enter to exit...; read A" fi fi fi |