Files
dotfiles/script/install.d/98-clean.sh
2025-05-31 22:56:26 +01:00

16 lines
368 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# Clean up after installation.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
brew cleanup
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo apt-get autoremove -qq
sudo apt-get clean -qq
fi
echo -e "${GREEN}Cleanup completed successfully!${NC}"