diff --git a/client/lib/twenty/client.rb b/client/lib/twenty/client.rb index 433fe5f..d9af8d7 100644 --- a/client/lib/twenty/client.rb +++ b/client/lib/twenty/client.rb @@ -1,7 +1,10 @@ # frozen_string_literal: true module Twenty + ## + # @return [String] + # Returns an absolute path to the nanoc build/ directory def self.build - File.expand_path File.join(__dir__, "..", "..", "build") + File.realpath File.join(__dir__, "..", "..", "build") end end