1package dgre
2
3import (
4 "git.sr.ht/~chld/dgr/cmd"
5 "os"
6)
7
8func VC(a string) {
9 if os.Getenv(a) == "" {
10 dgr.Die("variable not set", a, 1)
11 }
12}
1package dgre
2
3import (
4 "git.sr.ht/~chld/dgr/cmd"
5 "os"
6)
7
8func VC(a string) {
9 if os.Getenv(a) == "" {
10 dgr.Die("variable not set", a, 1)
11 }
12}