Skip to content

Commit 9edf22d

Browse files
committed
Fix tarball path
1 parent a68c477 commit 9edf22d

File tree

1 file changed

+4
-3
lines changed
  • root/etc/s6-overlay/s6-rc.d/init-mod-universal-calibre-setup

1 file changed

+4
-3
lines changed

root/etc/s6-overlay/s6-rc.d/init-mod-universal-calibre-setup/run

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ fi
1717

1818
export DEBIAN_FRONTEND="noninteractive"
1919

20-
if [[ -e /tmp/calibre.txz ]]; then
20+
if [[ -e /calibre.txz ]]; then
21+
mkdir -p /app/calibre
2122
tar xf \
22-
/tmp/calibre.txz \
23+
/calibre.txz \
2324
-C /app/calibre
2425
echo "Installing Calibre version $(cat /CALIBRE_RELEASE)"
2526
/app/calibre/calibre_postinstall
26-
rm /tmp/calibre.txz
27+
rm /calibre.txz
2728
fi

0 commit comments

Comments
 (0)