This commit is contained in:
Your Name 2024-08-23 19:48:22 +00:00
parent 4a99dd07c6
commit f94da75b5f

View File

@ -1009,6 +1009,12 @@ compile-kernel() {
time make install time make install
} }
fixBase() {
sudo emerge glibc go
}
if [ "$1" = "desktop" ]; then if [ "$1" = "desktop" ]; then
desktop desktop
elif [ "$1" = "tar" ]; then elif [ "$1" = "tar" ]; then
@ -1043,6 +1049,8 @@ elif [ "$1" = "compile-kernel" ]; then
compile-kernel compile-kernel
elif [ "$1" = "remove-snapshot" ]; then elif [ "$1" = "remove-snapshot" ]; then
remove-snapshots remove-snapshots
elif [ "$1" = "fix-base" ]; then
fixBase
elif [ "$1" = "help" ]; then elif [ "$1" = "help" ]; then
show-help show-help
else else