Sha256: 9fd7c3e32df67b564ac8a665222d3f788ed683bc18fb1399dd438c5fba093c9c

Contents?: true

Size: 432 Bytes

Versions: 2

Compression:

Stored size: 432 Bytes

Contents

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx

bundle install

# Do any other automated setup that you need to do here
PATH=$(pwd)

if [[ $PATH =~ danarchy_sys/bin$ ]]; then
    /usr/bin/ruby $PATH/setup.rb
elif [[ $PATH =~ danarchy_sys$ ]]; then
    /usr/bin/ruby $PATH/bin/setup.rb
else
    echo "Unable to find danarchy_sys/bin/setup.rb!"
    echo "Please run it manually: /usr/bin/ruby danarchy_sys/bin/setup.rb"
fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
danarchy_sys-0.2.11 bin/setup
danarchy_sys-0.2.10 bin/setup