Sha256: 95e0ed173113a470e7694df931374a64878d19cf5e264d73465b8bc246c2e217

Contents?: true

Size: 526 Bytes

Versions: 5

Compression:

Stored size: 526 Bytes

Contents

#!/bin/bash

#/ NAME
#/     ao-stage -- prepare the next application workarea
#/
#/ SYNOPSIS
#/     ao stage [deploy_set...]

# figure out the project root under which bin, lib live
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"

# load a jason bourne library
source "$shome/sbin/_treadstone"

# parse the command-line

# entry point
function main {
  set -- $(for a in "$@"; do echo $a.app; done)
  bundle exec cap "$@" deploy:lock deploy:update_code deploy:symlink_next
}

require 'sub' "$BASH_SOURCE" "$@"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alpha_omega-1.2.1 libexec/ao-stage
alpha_omega-1.2.0 libexec/ao-stage
alpha_omega-1.1.11 libexec/ao-stage
alpha_omega-1.1.10 libexec/ao-stage
alpha_omega-1.1.9 libexec/ao-stage