aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiuseppe2017-06-07 17:06:19 +0200
committerGiuseppe2017-06-07 17:06:19 +0200
commit063b20e39c7e0fd960505ced2e8300675fcbd74c (patch)
tree624bd4aa3611152b54f25c5c2a7015e8a8c91a78
parent3a33eb4148e53ebc19138365b4c8fccaea9f8ced (diff)
downloadaur-063b20e39c7e0fd960505ced2e8300675fcbd74c.tar.gz
Fix bad instructions in .install script
-rw-r--r--notify-when-done-i3-git.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/notify-when-done-i3-git.install b/notify-when-done-i3-git.install
index cc6cc426453e..d6c5840b75fa 100644
--- a/notify-when-done-i3-git.install
+++ b/notify-when-done-i3-git.install
@@ -1,13 +1,13 @@
post_install() {
echo "## To complete installation, add the following line to your bashrc"
echo '## [[ -f /usr/share/nwd/nwd-preexec.sh ]] && source /usr/share/nwd/nwd-preexec.sh'
+ echo '## and restart bash'
}
post_upgrade() {
- echo '## Upgrade will be effective only after a source of your bashrc.'
- echo '## source /etc/bash.bashrc'
+ echo '## Upgrade will be effective only you restart bash'
}
post_removal() {
- echo "## To complete removal, remove the source of nwd/preexec.sh from your bashrc"
+ echo "## To complete removal, remove the source of nwd-preexec.sh from your bashrc"
}