Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Schottelius committed Mar 18, 2012
2 parents 9682ce7 + e41fb0e commit ada0086
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion conf/type/__package_pkg_freebsd/explorer/pkg_version
Expand Up @@ -30,6 +30,10 @@ fi
# Don't produce "no pkgs installed" output -- breaks things
PKG_OUTPUT=$(pkg_info 2>&1)
if [ ! "$PKG_OUTPUT" = "pkg_info: no packages installed" ]; then
echo "$(echo "$PKG_OUTPUT" | grep "^$name-" | cut '-d ' -f1 | sed "s/$name-//g")"
echo -n "$(echo "$PKG_OUTPUT" \
| awk '{print $1}' \
| sed 's/^\(.*\)-\([^-]*\)$/name:\1 ver:\2/g' \
| grep "name:$name ver:" \
| sed 's/^.*ver:\(.*\)/\1/g')"
fi

2 changes: 1 addition & 1 deletion conf/type/__package_pkg_freebsd/gencode-remote
Expand Up @@ -107,7 +107,7 @@ if [ -n "$curr_version" ]; then # PKG *is* installed
assert "! ${version} = ${curr_version}" $LINENO
cmd="${rm_cmd} ${name}-${curr_version}"
execcmd "remove" "${cmd}"
cmd="${add_cmd} ${name}-${version}"
cmd="${add_cmd} -r ${name}-${version}"
execcmd "add" "${cmd}"
fi
else # Don't care what version to use
Expand Down

0 comments on commit ada0086

Please sign in to comment.