From 6a94f199c3293e6cc6a80339ac67da0817011e0a Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 24 Oct 2025 17:08:48 +0200 Subject: [PATCH] run_desktop.sh: fix path bug --- scripts/run_desktop.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_desktop.sh b/scripts/run_desktop.sh index 1cfa236d..8ddf9998 100755 --- a/scripts/run_desktop.sh +++ b/scripts/run_desktop.sh @@ -1,6 +1,6 @@ -#!/bin/bash +#!/bin/bash -x scriptdir=$(readlink -f "$0") -scriptdir=$(dirname "$mydir") +scriptdir=$(dirname "$scriptdir") script="$1" if [ -f "$script" ]; then script=$(readlink -f "$script")