# File lib/consular/cli.rb, line 253
      def message_unless_file(file, &blk)
        if File.exists?(File.expand_path(file))
          blk.call
        else
          say "#{file} does not exist. Try running `consular edit` first.", :yellow
        end
      end