libexec/dna in alpha_omega-0.0.89 vs libexec/dna in alpha_omega-0.0.90

- old
+ new

@@ -1,11 +1,14 @@ #!/bin/bash -e hst_this=$(hostname -s) if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then - # ssh into deploy host and run from there - exec bin/proxy $(basename $0) "$@" - exit 1 + # unless the .ao_no_proxy file exists + if [[ -f ".ao_no_proxy" ]]; then + # ssh into deploy host and run from there + exec bin/proxy $(basename $0) "$@" + exit 1 + fi fi case "$(basename $0)" in deploy|release) bundle exec cap "$@" deploy