correct bin/sh command

This commit is contained in:
Hyatt 2024-01-20 11:23:53 -06:00
parent 21b9343534
commit c2c9cc2327
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -35,7 +35,7 @@ func Init() {
// check to see if nsupdate is installed
cmd := "command -v nsupdate"
if err := exec.Command("/usr/bin/sh", "-c", cmd).Run(); err != nil {
if err := exec.Command("/usr/bin/env", "sh", "-c", cmd).Run(); err != nil {
panic("nsupdate is not installed")
}