From f0e87369ced15897da902dd5c9f405f121d36cae Mon Sep 17 00:00:00 2001 From: Jean Froment Date: Mon, 27 Mar 2017 16:56:05 +0200 Subject: [PATCH] Remove extra spaces --- Dockerfiles/plex/init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/plex/init b/Dockerfiles/plex/init index 8d6f505..1cacd7f 100755 --- a/Dockerfiles/plex/init +++ b/Dockerfiles/plex/init @@ -11,12 +11,12 @@ rm -f "/config/Plex Media Server/plexmediaserver.pid" # Plex WebTools if [ ! -d "/config/Plex Media Server/Plug-ins/WebTools.bundle" ]; then - wt_tag = $(curl -sX GET "https://api.github.com/repos/ukdtom/WebTools.bundle/releases/latest" \ + wt_tag=$(curl -sX GET "https://api.github.com/repos/ukdtom/WebTools.bundle/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') wget "https://github.com/ukdtom/WebTools.bundle/releases/download/$wt_tag/WebTools.bundle.zip" \ -O /config/Plex\ Media\ Server/Plug-ins/WebTools.bundle.zip unzip /config/Plex\ Media\ Server/Plug-ins/WebTools.bundle.zip - rm /config/Plex\ Media\ Server/Plug-ins/WebTools.bundle.zip + rm -f /config/Plex\ Media\ Server/Plug-ins/WebTools.bundle.zip fi exec start_pms > /dev/null 2>&1 \ No newline at end of file