We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e87b8fc + ebbc91a commit f82abebCopy full SHA for f82abeb
test/test_install_and_use.sh
@@ -36,6 +36,17 @@ v=$(tfenv list-remote | grep 0.8 | head -n 1)
36
check_version ${v} || exit 1
37
) || error_and_proceed "Installing latest version ${v} with Regex"
38
39
+echo "### Install latest version with Regex"
40
+cleanup
41
+
42
+v=$(tfenv list-remote | grep 0.8 | head -n 1)
43
+tfenv install latest:^0.8
44
+tfenv use latest:^0.8
45
+if ! check_version ${v}; then
46
+ echo "Installing latest version ${v} with Regex" 1>&2
47
+ exit 1
48
+fi
49
50
echo "### Install specific version"
51
cleanup || error_and_die "Cleanup failed?!"
52
0 commit comments