Fixed Windows silliness

This commit is contained in:
2021-11-19 20:46:54 -06:00
parent 19eb1a66e9
commit 5801a88d95
2 changed files with 12 additions and 4 deletions

View File

@@ -32,6 +32,14 @@ class W3DHub
linux? || mac?
end
def self.tar_command
if windows?
"tar"
else
"bsdtar"
end
end
def self.home_directory
File.expand_path("~")
end