remove HEREDOC; replace with echo
All checks were successful
Release / release (push) Successful in 1m2s

This commit is contained in:
Greg Gauthier 2026-02-14 14:45:59 +00:00
parent 120af6f29d
commit 128f54d42e

View File

@ -46,10 +46,8 @@ jobs:
./appimagetool.AppImage --appimage-extract
# Create wrapper script that uses extracted version
cat > /usr/local/bin/appimagetool << 'EOF'
#!/bin/bash
/workspace/gmgauthier/notepad/squashfs-root/AppRun "$@"
EOF
echo '#!/bin/bash' > /usr/local/bin/appimagetool
echo '/workspace/gmgauthier/notepad/squashfs-root/AppRun "$@"' >> /usr/local/bin/appimagetool
chmod +x /usr/local/bin/appimagetool
- name: Build Linux Packages