1 Commits
0.5.0 ... 0.5.1

Author SHA1 Message Date
bcaffe612c fixed move function in deploy.sh 2023-12-14 15:07:11 +01:00

View File

@@ -63,7 +63,7 @@ _bashrc_ref() {
_move() { _move() {
_delete _delete
_bashrc_ref _bashrc_ref "${FANCYFY}"
} }
_main() { _main() {
@@ -73,9 +73,17 @@ _main() {
_delete _delete
echo "removed custom configs" echo "removed custom configs"
elif [ "${MOVE}" = true ]; then elif [ "${MOVE}" = true ]; then
if [ "${PRESENT}" = false ]; then
_bashrc_ref "${FANCYFY}"
echo "unable to move to current directory"
echo "bash overrides not previously present"
echo "adding bash overrides..."
echo
else
_move _move
echo "moved custom config directory to ${THIS}" echo "moved custom config directory to ${THIS}"
echo echo
fi
elif [ "${PRESENT}" = true ]; then elif [ "${PRESENT}" = true ]; then
if [ "${CURRENT_FANCYFY}" != "${FANCYFY}" ]; then if [ "${CURRENT_FANCYFY}" != "${FANCYFY}" ]; then
sed -i "s/TERMINAL_FANCYFY=${CURRENT_FANCYFY}/TERMINAL_FANCYFY=${FANCYFY}/" ~/.bashrc sed -i "s/TERMINAL_FANCYFY=${CURRENT_FANCYFY}/TERMINAL_FANCYFY=${FANCYFY}/" ~/.bashrc