Consistent use of HOME variable.
David Blume

David Blume commited on 2018-09-06 19:56:20
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -5,5 +5,5 @@ if [ -f "${HOME}/.bashrc" ]; then
5 5
 fi
6 6
 if [[ -n $ITERM_PROFILE && -z $SSH_CLIENT &&
7 7
 	$(uname -s) == Darwin* && -f "${HOME}/tips.txt" ]]; then
8
-    cat ~/tips.txt
8
+    cat "${HOME}/tips.txt"
9 9
 fi
10 10