# File lib/jekyll_asset_pipeline/pipeline.rb, line 62
      def remove_staged_assets(source, config)
        begin
          config = DEFAULTS.merge(config)
          staging_path = File.join(source, config['staging_path'])
          FileUtils.rm_rf(staging_path)
        rescue Exception => e
          puts "Failed to remove staged assets."

          # Re-raise the exception
          raise e
        end
      end