Remove check for cloning dotfiles

This commit is contained in:
2025-06-23 00:01:14 +01:00
committed by GitHub
parent 48c8f4a88d
commit 5a2eca40b3

View File

@@ -77,7 +77,6 @@ install_gnome_extension() {
} }
# Clone Dotfiles if not already present # Clone Dotfiles if not already present
if [ $W_MAIN = "install" ]; then
cd "$HOME/dotfiles" cd "$HOME/dotfiles"
if [ "$(pwd)" != "$HOME/dotfiles" ]; then if [ "$(pwd)" != "$HOME/dotfiles" ]; then
echo "${YELLOW}Cloning dotfiles repository...${NC}" echo "${YELLOW}Cloning dotfiles repository...${NC}"
@@ -98,9 +97,7 @@ if [ $W_MAIN = "install" ]; then
exec "$0" "$@" exec "$0" "$@"
fi fi
fi fi
else
cd "$HOME/dotfiles" || exit
fi
mkdir -p "$HOME/dotfiles/logs" mkdir -p "$HOME/dotfiles/logs"