From 8fbbff93cf55843aa1919551ae6a33abe2842a19 Mon Sep 17 00:00:00 2001 From: better0fdead Date: Mon, 10 Jul 2023 13:54:23 +0300 Subject: [PATCH] uninstall: remove unused flag Removed '--use-docker' flag from 'tt uninstall tarantool' since it was added by mistake. Closes #501 --- CHANGELOG.md | 1 + cli/cmd/uninstall.go | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faa79c282..c901941a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Panic in tarantool 1.10.15 static build by `tt`. +- Removed `--use-docker` flag from `tt uninstall tarantool` since it was added by mistake. ## [1.1.1] - 2023-06-08 diff --git a/cli/cmd/uninstall.go b/cli/cmd/uninstall.go index 8fce9f476..fb2056ed2 100644 --- a/cli/cmd/uninstall.go +++ b/cli/cmd/uninstall.go @@ -44,9 +44,6 @@ func newUninstallTarantoolCmd() *cobra.Command { }, } - tntCmd.Flags().BoolVarP(&installCtx.BuildInDocker, "use-docker", "", false, - "build tarantool in Ubuntu 18.04 docker container") - return tntCmd }