Added sudo into a function install_go

This commit is contained in:
Marcin Woźniak 2023-04-17 23:13:12 +02:00
parent 610e4d80e3
commit 5ac1e63fc7

View File

@ -98,7 +98,7 @@ function install_go() {
if [[ "$(uname)" == "Darwin" ]]; then
brew install golang -q
elif [[ "$(uname -r)" =~ "gentoo" ]]; then
emerge dev-lang/go
sudo emerge dev-lang/go
fi
}