# File lib/travis/cli/encrypt_file.rb, line 105
      def decrypt_to_for(input_path)
        return if input_path == '-'
        if input_path.start_with? Dir.home
          input_path.sub(Dir.home, '~')
        else
          input_path
        end
      end