Sha256: 5292a931a196b9c9a5b675094f6cbaa2a759fa69e52c7790172bcc65b6ca0ccb
Contents?: true
Size: 497 Bytes
Versions: 14
Compression:
Stored size: 497 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
14 entries across 14 versions & 1 rubygems