Minor formatting changes

This commit is contained in:
Nathaniel Landau
2015-09-25 09:27:32 -04:00
parent c3ba67af3c
commit 6fb0bf8eca
4 changed files with 25 additions and 25 deletions

View File

@@ -107,8 +107,8 @@ header "Beginning ${scriptName}"
# Variables from config file
if is_file "../etc/mackup.cfg"; then
source "../etc/mackup.cfg"
MACKUPDIR="$DIRCFG"
TESTFILE="$TESTCFG"
MACKUPDIR="${DIRCFG}"
TESTFILE="${TESTCFG}"
else
die "Can not run without config file. Please find mackup.cfg"
fi
@@ -127,7 +127,7 @@ if [ "${force}" = "0" ]; then #Bypass the Dropbox test when script is forced
notice "Confirming that Dropbox has synced..."
while IFS= read -r file
do
while [ ! -e $HOME/"${file}" ] ;
while [ ! -e ${HOME}/"${file}" ] ;
do
info "...Waiting for Dropbox to Sync files."
sleep 10