1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/transmission_ynh.git synced 2024-09-04 01:46:12 +02:00

[fix] Wrong grep condition.

This commit is contained in:
opi 2014-11-11 17:00:05 +01:00
parent c075d93f7a
commit 14d09296ca

View file

@ -25,7 +25,8 @@ sudo cp ../conf/settings.json /etc/transmission-daemon/settings.json
sudo service transmission-daemon reload
# Patch sources to add a download button
if grep 'toolbar-downloads' /usr/share/transmission/web/index.html --quiet; then
if ! grep 'toolbar-downloads' /usr/share/transmission/web/index.html --quiet; then
sudo cp ../sources/toolbar-downloads.png /usr/share/transmission/web/style/transmission/images/toolbar-downloads.png
sudo bash -c 'cat ../sources/ynh_common.css >> /usr/share/transmission/web/style/transmission/common.css'
sudo sed -i "s@<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div>@<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div><div id=\"toolbar-separator\"></div><a href=\"../../downloads/\" id=\"toolbar-downloads\" title=\"Downloads\"></a>@g" /usr/share/transmission/web/index.html