From fe86d970ecc740a69316fe6b77b75b9f082672cd Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sat, 9 Oct 2021 15:42:42 +0100 Subject: [PATCH] Try to ensure PUBLIC_TAG stays under 31 chars --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 47baa1e..178e046 100755 --- a/quickemu +++ b/quickemu @@ -864,7 +864,7 @@ if command -v xdg-user-dir &>/dev/null; then if [ ! -d "${PUBLIC}" ]; then mkdir -p "${PUBLIC}" fi - PUBLIC_TAG=$(basename ${PUBLIC})-${USER,,} + PUBLIC_TAG="Public-${USER,,}" # shellcheck disable=SC2012 PUBLIC_PERMS=$(ls -ld "${PUBLIC}" | cut -d' ' -f1) else