2017-03-15 07:47:47 -07:00
|
|
|
update_command() {
|
|
|
|
local update_to_head=$1
|
|
|
|
|
|
|
|
(
|
2018-12-01 19:07:44 -07:00
|
|
|
cd "${ASDF_DIR}" || exit 1
|
2017-03-15 07:47:47 -07:00
|
|
|
|
2018-12-01 19:07:44 -07:00
|
|
|
if [ -f asdf_updates_disabled ] || ! git rev-parse --is-inside-work-tree &> /dev/null; then
|
2017-09-12 15:33:48 -07:00
|
|
|
echo "Update command disabled. Please use the package manager that you used to install asdf to upgrade asdf."
|
2018-12-01 19:17:27 -07:00
|
|
|
exit 1
|
2017-09-12 15:33:48 -07:00
|
|
|
else
|
|
|
|
do_update "$update_to_head"
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
do_update() {
|
|
|
|
local update_to_head=$1
|
|
|
|
|
2017-03-15 07:47:47 -07:00
|
|
|
if [ "$update_to_head" = "--head" ]; then
|
|
|
|
# Update to latest on the master branch
|
2017-03-15 09:37:41 -07:00
|
|
|
git checkout master
|
2017-03-15 07:47:47 -07:00
|
|
|
|
|
|
|
# Pull down the latest changes on master
|
2017-03-15 09:37:41 -07:00
|
|
|
git pull origin master
|
2017-03-15 07:47:47 -07:00
|
|
|
echo "Updated asdf to latest on the master branch"
|
|
|
|
else
|
|
|
|
# Update to latest release
|
2017-09-25 06:13:35 -07:00
|
|
|
git fetch origin --tags || exit 1
|
2017-03-15 09:37:41 -07:00
|
|
|
tag=$(git tag | sort_versions | sed '$!d') || exit 1
|
2017-03-15 07:47:47 -07:00
|
|
|
|
|
|
|
# Update
|
|
|
|
git checkout "$tag" || exit 1
|
|
|
|
echo "Updated asdf to release $tag"
|
|
|
|
fi
|
|
|
|
}
|
2017-03-15 08:16:25 -07:00
|
|
|
|
|
|
|
# stolen from https://github.com/rbenv/ruby-build/pull/631/files#diff-fdcfb8a18714b33b07529b7d02b54f1dR942
|
|
|
|
sort_versions() {
|
|
|
|
sed 'h; s/[+-]/./g; s/.p\([[:digit:]]\)/.z\1/; s/$/.z/; G; s/\n/ /' | \
|
|
|
|
LC_ALL=C sort -t. -k 1,1 -k 2,2n -k 3,3n -k 4,4n -k 5,5n | awk '{print $2}'
|
|
|
|
}
|