From a4e19c3550f25c7610b4e6695e66d770eac95bec Mon Sep 17 00:00:00 2001 From: Luca Di Maio Date: Mon, 26 Feb 2024 21:21:39 +0100 Subject: [PATCH] export: absolute path of exported icons should correspond to host's home, not from inside --- distrobox-export | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrobox-export b/distrobox-export index 07a245e025..40329cf69e 100755 --- a/distrobox-export +++ b/distrobox-export @@ -459,7 +459,7 @@ export_application() { # check if we're exporting an icon which is not in a canonical path if [ "${icon_home_directory}" = "$(dirname "${icon_file}")" ]; then - icon_home_directory="/run/host${host_home}/.local/share/icons/" + icon_home_directory="${host_home}/.local/share/icons/" icon_file_absolute_path="${icon_home_directory}$(basename "${icon_file}")" fi