From e5ffadc819d68438826254ed2f2eef859e92b8b6 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 25 Mar 2023 08:56:46 -0300 Subject: [PATCH] Remove dead require --- Rakefile.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile.rb b/Rakefile.rb index 2492bd1..038924a 100644 --- a/Rakefile.rb +++ b/Rakefile.rb @@ -2,8 +2,6 @@ require "ryo" require "listen" -require_relative "lib/tasks" -ENV["SASS_PATH"] = "./src/css/" load "tasks/config/build.rake" load "tasks/config/install.rake" @@ -12,6 +10,7 @@ load "tasks/deploy.rake" namespace :nanoc do desc "Compile the website" task :compile do + ENV["SASS_PATH"] = "./src/css/" sh "bundle exec nanoc co" end