Sha256: 8358c45ca685b8be7e058a54e31aa8325f05793ce644a1066ac9daa778fb4503

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

#!/usr/bin/env bash

declare rvm_verbose_flag=${rvm_verbose_flag:-0}
declare rvm_hook=${rvm_hook:-""}

if [[ -n "$rvm_hook" ]] ; then
  if [[ -s "$rvm_hooks_path/$rvm_hook" ]] ; then
    if [[ ${rvm_verbose_flag:-0} -gt 0 || ${rvm_debug_flag:-0} -gt 0 ]] ; then
      "$rvm_path/scripts/log" "info" "running hook $rvm_hook"
    fi
    source "$rvm_hooks_path/$rvm_hook"
  fi
fi
unset rvm_hook

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rvm-1.0.7 scripts/hook