Browse Source

Fix download_webclient use in debian/rules.

Ian Walton 1 year ago
parent
commit
64dafce1c0
2 changed files with 4 additions and 3 deletions
  1. 1 1
      debian/compat
  2. 3 2
      debian/rules

+ 1 - 1
debian/compat

@@ -1 +1 @@
-9
+10

+ 3 - 2
debian/rules

@@ -6,8 +6,9 @@
 override_dh_auto_build:
 	dh_auto_build $@
 	DOWNLOAD_ONLY=1 ./download_webclient.sh
-	unzip dist.zip -d obj-x86_64-linux-gnu/
+	tar -xzf dist.tar.gz
+	mv jellyfin-web_* obj-x86_64-linux-gnu/dist
 
 override_dh_auto_clean:
 	dh_auto_clean $@
-	rm dist.zip || true
+	rm dist.tar.gz || true