moving all dots

This commit is contained in:
Barak Michener 2024-05-18 19:08:15 -07:00
parent 6fcf9ba919
commit d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions

22
dot_puppet/go.pp Normal file
View file

@ -0,0 +1,22 @@
package {
"golang":
ensure => "installed"
}
exec {
"get_gocode":
command => "go get -u github.com/nsf/gocode",
path => "/usr/bin",
}
exec {
"get_gocov":
command => "go get -u github.com/axw/gocov/gocov",
path => "/usr/bin",
}
exec {
"get_gotags":
command => "go get -u github.com/jstemmer/gotags",
path => "/usr/bin",
}