taldir

Directory service to resolve wallet mailboxes by messenger addresses
Log | Files | Refs | Submodules | README | LICENSE

bootstrap (365B)


      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 "Go binary not in $PATH!"
     12   exit 1
     13 fi
     14 
     15 if [ -d ".git" ]; then
     16   mkdir -p internal/gana
     17   git submodule update --init --recursive
     18   git submodule sync --recursive
     19 fi
     20