# File lib/packaging/util/version.rb, line 15
    def git_tagged?
      Pkg::Util.in_project_root do
        %x{#{GIT} describe >/dev/null 2>&1}
        $?.success?
      end
    end