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 }