summarylogtreecommitdiffstats
path: root/install.sh.wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh.wrapper')
-rwxr-xr-xinstall.sh.wrapper12
1 files changed, 10 insertions, 2 deletions
diff --git a/install.sh.wrapper b/install.sh.wrapper
index 4eaa5bcdcaff..edffc24120d8 100755
--- a/install.sh.wrapper
+++ b/install.sh.wrapper
@@ -1,9 +1,17 @@
#!/usr/bin/env sh
set -e
-if [[ "$(whoami)" != "$(logname)" ]]; then
+if [[ "$(whoami)" != "$(logname 2>/dev/null)" ]]; then
+ echo >&2
echo >&2 'This command will install files into your' \
- 'home directory. It must be run without sudo.'
+ 'home directory. It must be run *without* sudo.'
+
+ if pacman -Q tmux >/dev/null 2>&1; then
+ echo >&2 'Also, this installer does *not* support tmux sessions.'
+ echo >&2 'Please detach from tmux; you can re-attach' \
+ 'after this command has finished running.'
+ fi
+
exit 1
fi