summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAli Molaei2019-04-06 16:47:46 +0430
committerAli Molaei2019-04-06 16:47:46 +0430
commit8c75570860ae52874bce54430fed61bfa0ed2f7a (patch)
treefe1958a648a006e3ef7baab4ee25fe6843d971e9
parentd43b4beea1708948799a760f8ea5679821b5ddfe (diff)
downloadaur-8c75570860ae52874bce54430fed61bfa0ed2f7a.tar.gz
Fix some problems in post install script
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore6
-rw-r--r--PKGBUILD2
-rw-r--r--undistract-me.install6
4 files changed, 8 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 39bca8af9835..cbe4988dd40c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = undistract-me-git
pkgdesc = Notifies you when long-running terminal commands complete
pkgver = r77.c7f6056
- pkgrel = 9
+ pkgrel = 10
url = https://github.com/jml/undistract-me
install = undistract-me.install
arch = any
diff --git a/.gitignore b/.gitignore
index ceb765e32be4..d7c9d7fb7d3e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-pkg
-src
-undistract-me
+pkg/
+src/
+undistract-me/
*.pkg.*
diff --git a/PKGBUILD b/PKGBUILD
index 3d659997c488..57504605a5d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='undistract-me-git'
pkgver=r77.c7f6056
-pkgrel=9
+pkgrel=10
arch=('any')
url="https://github.com/jml/undistract-me"
depends=('libnotify' 'xorg-xprop')
diff --git a/undistract-me.install b/undistract-me.install
index 327eb948a8b1..866916038c7a 100644
--- a/undistract-me.install
+++ b/undistract-me.install
@@ -1,7 +1,7 @@
post_install() {
- echo ">>> Don't forget to add \`source /usr/share/undistract-me/long-running.bash;notify_when_long_running_commands_finish_install\` to your .bashrc or .zshrc"
+ echo ">>> Don't forget to add \`source /usr/share/undistract-me/long-running.bash;notify_when_long_running_commands_finish_install\` to your ~\.bashrc or ~\.zshrc"
echo ">>> You can do this automatically via the following command:"
- printf ">>> echo \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> .bashrc\n"
+ printf ">>> echo -e \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> ~\.bashrc\n"
echo ">>> Or (for zsh):"
- printf ">>> echo \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> .zshrc\n"
+ printf ">>> echo -e \"source /usr/share/undistract-me/long-running.bash\\\nnotify_when_long_running_commands_finish_install\" >> ~\.zshrc\n"
}