Added missing end statements on unix-storage.lua. Still getting an lfs module error on CLI.

This commit is contained in:
Nathan Schneider 2022-06-08 10:31:20 -04:00
parent fcf0725534
commit 1f88981112

View File

@ -45,6 +45,7 @@ local store_ledger = function(verbose)
if verbose then modpol.ocutil.log(count .. " ledger entries stored to disk")
end
end
local store_orgs = function(verbose)
local serialized_orgs = modpol.serpent.dump(modpol.orgs)
@ -55,6 +56,7 @@ local store_orgs = function(verbose)
if verbose then modpol.ocutil.log(count .. " orgs stored to disk")
end
end
modpol.store_data = function(verbose)
store_ledger(verbose)