From 6be4bdf6ad92eea3e57ccfaf95672daf43cc1090 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 6 Jul 2021 08:46:18 +0200 Subject: ci: fixed a lot of issues with style and urls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- Rakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 3f7e6da..173375c 100644 --- a/Rakefile +++ b/Rakefile @@ -15,10 +15,10 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -abort("Please run this using `bundle exec rake`") unless ENV["BUNDLE_BIN_PATH"] -require "html-proofer" +abort('Please run this using `bundle exec rake`') unless ENV['BUNDLE_BIN_PATH'] +require 'html-proofer' -desc "Test the website" +desc 'Test the website' task :test do options = { check_sri: true, @@ -29,11 +29,11 @@ task :test do timeout: 120 }, cache: { - timeframe: "6w" + timeframe: '6w' } } - dir = ENV["BUILD_DEST"] || "./_site" + dir = ENV['BUILD_DEST'] || './_site' HTMLProofer.check_directory(dir, options).run end -- cgit v1.2.3