From 65de412b5bef6f9bf594fddb19d661dd5d37902f Mon Sep 17 00:00:00 2001 From: deepend-tildeclub Date: Tue, 12 May 2026 09:38:08 -0600 Subject: [PATCH] Fix AppImage Perl symlinked core libs --- .github/workflows/appimage-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/appimage-build.yml b/.github/workflows/appimage-build.yml index 60ce00c0..c332d195 100644 --- a/.github/workflows/appimage-build.yml +++ b/.github/workflows/appimage-build.yml @@ -95,7 +95,7 @@ jobs: perl -MConfig -e 'print join "\n", grep { defined && length && -d } @Config{qw(privlibexp archlibexp vendorlibexp vendorarchexp sitelibexp sitearchexp)}' | while IFS= read -r perl_dir; do install -d "AppDir$(dirname "$perl_dir")" - cp -a "$perl_dir" "AppDir$perl_dir" + cp -aL "$perl_dir" "AppDir$perl_dir" done if [ -d "/usr/share/perl5" ]; then