Sha256: a6ace36231450f726e2006240d1095d164476dc18038fb2d4b5401f81729d0e5
Contents?: true
Size: 493 Bytes
Versions: 15
Compression:
Stored size: 493 Bytes
Contents
#!/bin/bash DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR/.. rm -rf lib function pipinstall () { if [ $(which pip) == '' ]; then echo "ERROR! No pip installed. Try installing either python3 pip or docker" exit -1 fi pip install aws-acm-cert-validator==0.1.11 -t lib } if [ $(which docker) == '' ]; then pipinstall else docker run --rm -v $DIR/..:/dst -w /dst -u $UID python:3.6-alpine pip install aws-acm-cert-validator==0.1.11 -t lib fi
Version data entries
15 entries across 15 versions & 1 rubygems