Sha256: 5c8b7796aa733853699f5701bd97099e116cf2d9c4534ab13e7c336b7b5e4018
Contents?: true
Size: 732 Bytes
Versions: 9
Compression:
Stored size: 732 Bytes
Contents
#!/bin/bash set -exu # https://unix.stackexchange.com/questions/1496/why-doesnt-my-bash-script-recognize-aliases shopt -s expand_aliases alias lono="$(pwd)/exe/lono" bundle install --without development test rm -rf infra lono new infra # Very simply template with just a security group cp .cody/demo.rb infra/blueprints/demo/app/templates/demo.rb cd infra # Rewrite the Gemfile to use the local lono gem for testing cat << EOF > Gemfile source "https://rubygems.org" gem "lono", path: "$CODEBUILD_SRC_DIR", submodules: true EOF bundle # install lono gem in the infra project STACK_NAME="demo-$(date +%Y%m%d%H%M%S)" lono cfn deploy $STACK_NAME --blueprint demo lono cfn status $STACK_NAME lono cfn delete $STACK_NAME --sure
Version data entries
9 entries across 9 versions & 1 rubygems