narrow it down to only Windows
This commit is contained in:
parent
1b4ab418ba
commit
f8456e02c1
|
|
@ -119,7 +119,11 @@ module Jekyll
|
||||||
# Returns nothing
|
# Returns nothing
|
||||||
# rubocop:disable Style/AccessorMethodName
|
# rubocop:disable Style/AccessorMethodName
|
||||||
def set_timezone(timezone)
|
def set_timezone(timezone)
|
||||||
ENV["TZ"] = Utils::Platforms.windows? ? Utils::WinTZ.calculate(timezone) : timezone
|
ENV["TZ"] = if Utils::Platforms.really_windows?
|
||||||
|
Utils::WinTZ.calculate(timezone)
|
||||||
|
else
|
||||||
|
timezone
|
||||||
|
end
|
||||||
end
|
end
|
||||||
# rubocop:enable Style/AccessorMethodName
|
# rubocop:enable Style/AccessorMethodName
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue