diff --git a/pkg/package-format/appimage/appLauncher.go b/pkg/package-format/appimage/appLauncher.go index 6ad386b..8428d74 100644 --- a/pkg/package-format/appimage/appLauncher.go +++ b/pkg/package-format/appimage/appLauncher.go @@ -94,6 +94,11 @@ func copyIcons(options *AppImageOptions) ([]IconTemplateInfo, error) { if err != nil { return errors.WithStack(err) } + + err = os.Symlink(iconRelativeToStageFile, filepath.Join(stageDir, ".DirIcon")) + if err != nil { + return errors.WithStack(err) + } } return nil