install -d

This commit is contained in:
Sam Hewitt 2016-03-16 17:05:19 -04:00
parent b4704858db
commit 6220311796
1 changed files with 4 additions and 12 deletions

View File

@ -84,19 +84,11 @@ elif [ "$UID" -ne "$ROOT_UID" ]; then
fi fi
echo "Installing..." echo "Installing..."
# .local/share/themes # .local/share/themes
if [ -d $HOME/.local/share/themes ]; then install -d $HOME/.local/share/themes
cp -R ./Paper/ $HOME/.local/share/themes/ cp -R ./Paper/ $HOME/.local/share/themes/
else
mkdir -p $HOME/.local/share/themes
cp -R ./Paper/ $HOME/.local/share/themes/
fi
# .themes # .themes
if [ -d $HOME/.themes ]; then install -d $HOME/.themes
cp -R ./Paper/ $HOME/.themes/ cp -R ./Paper/ $HOME/.themes/
else
mkdir -p $HOME/.themes
cp -R ./Paper/ $HOME/.themes/
fi
echo "Installation complete!" echo "Installation complete!"
set set
fi fi