10 lines
198 B
Bash
10 lines
198 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Clean up macOS-specific files if they are present
|
|
if [ -d /Library ] && [ -d /System ]; then
|
|
# System is macOS
|
|
else
|
|
if [ -d ~/Library ]; then
|
|
rm -rf ~/Library
|
|
fi
|
|
fi
|