Sha256: d932e5a3cb186bf02fc5887250f83c3a775eb7cd24fc3d7dd754521647c0c361

Contents?: true

Size: 458 Bytes

Versions: 3

Compression:

Stored size: 458 Bytes

Contents

#!/bin/bash

#/ NAME
#/     run-noop -- Run noop chef in separate workarea
#/
#/ SYNOPSIS
#/     
#/     run-noop DIR VERSION


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

# load a meat library
source "$shome/libexec/_jason" "$@"

# entry point
function main {
  bundle exec ruby "$shome/libexec/sanitize-node.rb" "$@" | \
    perl -pe 's{/tmp/[ab]/}{/}g'
}

require sub "$BASH_SOURCE" "$@"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tvdinner-0.0.6 libexec/sanitize-node
tvdinner-0.0.5 libexec/sanitize-node
tvdinner-0.0.4 libexec/sanitize-node