# File lib/chef/knife/core/bootstrap_context.rb, line 37
        def bootstrap_version_string
          if @config[:prerelease]
            "--prerelease"
          else
            version = knife_config[:bootstrap_version] || Chef::VERSION
            "--version #{version}"
          end
        end