# File lib/commander/user_interaction.rb, line 453
      def percent_complete
        if @total_steps.zero?
          100
        else
          @step * 100 / @total_steps
        end
      end