summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Bocken2021-06-07 17:43:44 +0200
committerAlexander Bocken2021-06-07 17:43:44 +0200
commitf5d5d0c6c5831aa028e735557984d9c685cd1eb8 (patch)
tree33de79aa311652aacebacec336e7890b11e61c34
parent583b9c69c17dc1543f07a3e07abf789067e2550a (diff)
downloadaur-f5d5d0c6c5831aa028e735557984d9c685cd1eb8.tar.gz
do not evaluate vars in post_remove
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--threadwatcher.install10
3 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 965322c2b09b..344650c9c7f1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = threadwatcher
pkgdesc = Keep a list of 4chan threads to watch over and continually download media from
pkgver = r9.40693f4
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/AlexBocken/threadwatcher
install = threadwatcher.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index bb8619d96f18..ccc0127a51b1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Alexander Bocken <alexander@bocken.org>
pkgname=threadwatcher
pkgver=r9.40693f4
-pkgrel=3
+pkgrel=4
pkgdesc="Keep a list of 4chan threads to watch over and continually download media from"
arch=(any)
depends=(
diff --git a/threadwatcher.install b/threadwatcher.install
index a74740499026..7c8efefa2917 100644
--- a/threadwatcher.install
+++ b/threadwatcher.install
@@ -1,9 +1,9 @@
post_install() {
- echo " To let threadwatcher automatically scan for new files, consider using a cronjob such as"
- echo " */10 * * * * /usr/bin/threadwatcher scan"
+ echo " To let threadwatcher automatically scan for new files, consider using a cronjob such as"
+ echo " */10 * * * * /usr/bin/threadwatcher scan"
}
post_remove() {
- echo " urlfile (default location .local/share/threadwatcher/threads) has not been removed."
- echo " please remove the dir manually if you wish to do so"
- echo " ( rm -rf ${XDG_DATA_HOME:-$HOME/.local.share}/threadwatcher/ )"
+ echo " urlfile (default location .local/share/threadwatcher/threads) has not been removed."
+ echo " please remove the dir manually if you wish to do so"
+ echo " ( rm -rf \${XDG_DATA_HOME:-\$HOME/.local/share}/threadwatcher/ )"
}