Skip to content

Commit

Permalink
install: fix installation script (#1282)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludanin authored Mar 13, 2024
1 parent 4176c4b commit 4a0990d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ else
fi
if [ -e "distrobox-$(echo "${release_name}" | sed 's/.tar.gz//g')"/icons/terminal-distrobox-icon.svg ]; then
install -D -m 0644 -t "${icon_dest_path}/scalable/apps" \
"distrobox-$(echo "${release_name}" | sed 's/.tar.gz//g')"icons/terminal-distrobox-icon.svg
"distrobox-$(echo "${release_name}" | sed 's/.tar.gz//g')"/icons/terminal-distrobox-icon.svg
for sz in 16 22 24 32 36 48 64 72 96 128 256; do
install -D -m 0644 -t "${icon_dest_path}/${sz}x${sz}/apps" \
icons/hicolor/"${sz}x${sz}"/apps/terminal-distrobox-icon.png
"distrobox-$(echo "${release_name}" | sed 's/.tar.gz//g')"/icons/hicolor/"${sz}x${sz}"/apps/terminal-distrobox-icon.png
done
fi

Expand Down

0 comments on commit 4a0990d

Please sign in to comment.