Fixed a bug in header script which caused my home directory to be used instead of variables

This commit is contained in:
Jon-William Lewis
2015-06-10 08:43:01 -05:00
parent 9a9dbcc171
commit 6e7f4c3e95
2 changed files with 6 additions and 6 deletions

View File

@@ -14,8 +14,8 @@ if [ -z "$HOME" ]; then HOME=/home/"\$(whoami)"; fi
PROD_STR="$PROD_STR"
VER_STR="$VER_STR"
ROOTDIR="$HOME"/.config/sns
BASEDIR="$ROOTDIR"/notes
CONFIGURATION="$ROOTDIR/sns.conf"
ROOTDIR="\$HOME"/.config/sns
BASEDIR="\$ROOTDIR"/notes
CONFIGURATION="\$ROOTDIR/sns.conf"
EOF