github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/scripts/install-acbuild.sh (about)

     1  #!/bin/bash
     2  set -e
     3  
     4  if ! [ -e "$PWD/acbuild" ]; then
     5      git clone https://github.com/appc/acbuild
     6  fi
     7  
     8  pushd acbuild
     9  
    10  git pull
    11  ./build
    12  cp -v bin/* /usr/local/bin
    13  
    14  popd