summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-01 13:20:22 +0200
committerxengineering <me@xengineering.eu>2024-05-01 13:20:22 +0200
commit390642f9bbc12f0b435f343fc35f4a47c5ec7680 (patch)
tree7747b695d7190b3131f4b155f7c29abb7efc7121 /main.go
parent4cc0677b79edeed05ead23def152ac45f35f556d (diff)
downloadceres-390642f9bbc12f0b435f343fc35f4a47c5ec7680.tar
ceres-390642f9bbc12f0b435f343fc35f4a47c5ec7680.tar.zst
ceres-390642f9bbc12f0b435f343fc35f4a47c5ec7680.zip
Do not remove storage folder
This is not useful in production. Furthermore in the debug use case the default storage path is now ./storage which can easily be removed by `rm -rf storage`. This also allows to not remove the storage folder for further analysis of the storage folder.
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2eb3342..d43edd2 100644
--- a/main.go
+++ b/main.go
@@ -30,7 +30,6 @@ func main() {
}
model.InitStorage(config.StorageFilePath, gitDescribe)
- defer model.RemoveStorage(config.StorageFilePath)
model.InitDatabase(config.StorageFilePath)
defer model.CloseDatabase()