Sha256: 765dc03d93bf98f7271754b5a2ac8c44e30219cda6b0c5a7cba6d01ccff46150

Contents?: true

Size: 497 Bytes

Versions: 3

Compression:

Stored size: 497 Bytes

Contents

#!/bin/bash

#/ NAME
#/     task --
#/
#/ SYNOPSIS
#/     
#/     task <task_name> 
#/

# 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/libexec/_jason"
require 'ao'

function aomain {
  local nm_task=$1; shift
  set -- $(for a in "$@"; do echo $a.app; done)
  cap "$@" deploy:began deploy:lock_migrate deploy:migrate "$nm_task" deploy:finished
}

require sub "$BASH_SOURCE" "$@"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
alpha_omega-1.5.15 libexec/aoh-task
alpha_omega-1.5.14 libexec/aoh-task
alpha_omega-1.5.12 libexec/aoh-task