gnunet-gns-registrar

GNU Name System registrar
Log | Files | Refs | README

bootstrap (263B)


      1 #!/bin/sh
      2 
      3 # This is more portable than `which' but comes with
      4 # the caveat of not(?) properly working on busybox's ash:
      5 existence()
      6 {
      7     type "$1" >/dev/null 2>&1
      8 }
      9 
     10 if ! existence go; then
     11   echo "GNS Registrar requires Go to build!"
     12   exit 1
     13 fi
     14 
     15 go mod tidy
     16