Formatting adjustment

This commit is contained in:
Kris Lamoureux 2020-01-13 00:09:49 -05:00
parent 284d0988e0
commit 63a67c9d83
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -7,7 +7,7 @@
DOTFILES="$(pwd)/.*[a-z]" DOTFILES="$(pwd)/.*[a-z]"
for FILE in $DOTFILES ; do for FILE in $DOTFILES; do
BASEFILE=$(basename $FILE) BASEFILE=$(basename $FILE)
NEWLINK=0 NEWLINK=0
@ -36,7 +36,7 @@ for FILE in $DOTFILES ; do
fi fi
# Create a new symlink # Create a new symlink
if [ $NEWLINK -eq 1 ] ; then if [ $NEWLINK -eq 1 ]; then
echo "Creating new link to $(pwd)/$BASEFILE from" ~ echo "Creating new link to $(pwd)/$BASEFILE from" ~
ln -s $(pwd)/$BASEFILE ~/$BASEFILE ln -s $(pwd)/$BASEFILE ~/$BASEFILE
fi fi