Skip to content

Commit

Permalink
Found a few log calls that was missed when logging was pulled internal
Browse files Browse the repository at this point in the history
  • Loading branch information
griff committed Jun 27, 2011
1 parent c00078d commit 15bf6a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/functions/packages
Expand Up @@ -58,7 +58,7 @@ install_package()
for patch in $(echo $patches | tr ',' ' ') ; do
__rvm_run "$package/patch" "patch -p0 -f < $patch" "Applying patch '$patch'..."
if [[ $? -gt 0 ]] ; then
$rvm_scripts_path/log "error" "Patch $patch did not apply cleanly... back to the patching board :(" ; exit 1
rvm_error "Patch $patch did not apply cleanly... back to the patching board :(" ; exit 1
fi
done
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/functions/utility
Expand Up @@ -23,7 +23,7 @@ is_a_function() {
__rvm_warn_on_rubyopt()
{
if [[ -n "${RUBYOPT:-""}" ]]; then
"$rvm_scripts_path"/log "warn" \
rvm_warn \
"Please note: You have the RUBYOPT environment variable set and this \
may interfere with normal rvm operations. We sugges unsetting it."
return 1
Expand Down

0 comments on commit 15bf6a3

Please sign in to comment.