Skip to content
Snippets Groups Projects
Commit f6c8d421 authored by Adriaan de Groot's avatar Adriaan de Groot
Browse files

x11/plasma5-plasma-workspace: fix errors in Wayland-script

These are fairly basic and silly shell-script errors in the
startplasma-wayland.sh script (which might not even be needed,
if you start KDE Plasma-wayland some other way).

Derpy hat to me.
parent c3091757
No related branches found
No related tags found
No related merge requests found
PORTNAME= plasma-workspace
DISTVERSION= ${KDE_PLASMA_VERSION}
PORTREVISION= 1
CATEGORIES= x11 kde kde-plasma
MAINTAINER= kde@FreeBSD.org
......
......@@ -52,7 +52,7 @@ fi
startup_dir=`/usr/bin/dirname "$0"`
startup_exe=`/usr/bin/basename "$0" .sh`
if [ -z "$LOGFILE" ] ; then
if [ -n "$LOGFILE" ] ; then
{
echo "Starting KDE Plasma Wayland from PID $$"
echo "XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR"
......@@ -60,7 +60,7 @@ if [ -z "$LOGFILE" ] ; then
echo "startup=$startup_dir/$startup_exe"
} > $LOGFILE
exec $scaffolding $startup_dir/$startup_exe 2>&1 | tee -a $LOG
exec $scaffolding $startup_dir/$startup_exe 2>&1 | tee -a $LOGFILE
else
exec $scaffolding $startup_dir/$startup_exe
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment