From 520a098f8a5d222562aadca524f56b8213bc49d8 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Mon, 6 Mar 2023 10:16:06 -0600 Subject: [PATCH] Fix directory does not exist --- vuetorrent/lure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vuetorrent/lure.sh b/vuetorrent/lure.sh index 015a136..faeafce 100644 --- a/vuetorrent/lure.sh +++ b/vuetorrent/lure.sh @@ -1,6 +1,6 @@ name='vuetorrent' version=VERSION -release=2 +release=3 desc='The sleekest looking WEBUI for qBittorrent made with Vuejs!' homepage='https://github.com/WDaan/VueTorrent' architectures=('amd64') @@ -22,6 +22,7 @@ package() { echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/${name}.zip" -o ${name}.zip # Unzip and install + mkdir -p "${pkgdir}/opt/${name}" unzip vuetorrent.zip -d "${pkgdir}/opt/${name}" # Print usage instructions echo "Make sure to choose /opt/vuetorrent as the location of the custom WebUI in qBittorrent settings."