diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 90f1798..3fb3966 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -204,15 +204,15 @@ jobs: cp "$TARGET" AppDir/usr/bin/gonavi # Create desktop file - cat > AppDir/usr/share/applications/gonavi.desktop << 'EOF' -[Desktop Entry] -Name=GoNavi -Exec=gonavi -Icon=gonavi -Type=Application -Categories=Development;Database; -Comment=Database Management Tool -EOF + printf '%s\n' \ + '[Desktop Entry]' \ + 'Name=GoNavi' \ + 'Exec=gonavi' \ + 'Icon=gonavi' \ + 'Type=Application' \ + 'Categories=Development;Database;' \ + 'Comment=Database Management Tool' \ + > AppDir/usr/share/applications/gonavi.desktop cp AppDir/usr/share/applications/gonavi.desktop AppDir/gonavi.desktop diff --git a/frontend/wailsjs/runtime/package.json b/frontend/wailsjs/runtime/package.json old mode 100755 new mode 100644 diff --git a/frontend/wailsjs/runtime/runtime.d.ts b/frontend/wailsjs/runtime/runtime.d.ts old mode 100755 new mode 100644 diff --git a/frontend/wailsjs/runtime/runtime.js b/frontend/wailsjs/runtime/runtime.js old mode 100755 new mode 100644