Update Path

This commit is contained in:
0x1eef 2024-03-12 04:57:14 -03:00
parent 32989a92bf
commit 228198af44

View file

@ -3,14 +3,14 @@ module Twenty::Path
# @return [String] # @return [String]
# Returns the directory where twenty stores persistent data. # Returns the directory where twenty stores persistent data.
def datadir def datadir
File.join(Dir.home, ".local", "share", "20") File.join(Dir.home, ".local", "share", "twenty")
end end
## ##
# @return [String] # @return [String]
# Returns the directory where twenty stores temporary data. # Returns the directory where twenty stores temporary data.
def tmpdir def tmpdir
File.join(Dir.tmpdir, "20") File.join(Dir.tmpdir, "twenty")
end end
## ##