Skip to content

Commit

Permalink
Github actions: .deb package: don't quote array elements in for loops
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45492 379a1393-f5fb-40a0-bcee-ef074d9b53f7
  • Loading branch information
Compyx committed Feb 14, 2025
1 parent 691aeee commit 1b8ee95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vice/build/github-actions/build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ if [ "$UI" = "gtk3" ]; then
# Copy .desktop files
cp vice/data/common/*.desktop ${DEB_DIR}/usr/share/applications
# Copy icon files
for name in "x64 x64dtv xscpu64 x128 xvic xplus4 xpet xcbm2 vsid"; do
for size_ in "32 48 64 256"; do
for name in x64 x64dtv xscpu64 x128 xvic xplus4 xpet xcbm2 vsid; do
for size_ in 32 48 64 256; do
cp vice/data/common/vice-${name}_${size_}.png \
${DEB_DIR}/usr/share/icons/hicolor/${size_}x${size_}/apps/vice-${name}.png
done
Expand Down

0 comments on commit 1b8ee95

Please sign in to comment.