[release] v0.14.6

This commit is contained in:
Yann Stepienik
2024-02-16 01:05:15 +00:00
parent 57b6657a36
commit 8f39035044
3 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
## Version 0.14.6
- Fix custom back-up folder logic
## Version 0.14.5
- Fix an issue with the whitelisting form of URLs

View File

@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.14.5",
"version": "0.14.6",
"description": "",
"main": "test-server.js",
"bugs": {

View File

@@ -17,7 +17,7 @@ func RunBackup() {
if utils.GetMainConfig().BackupOutputDir != "" {
outputDir = utils.GetMainConfig().BackupOutputDir
if os.Getenv("HOSTNAME") != "" {
outputDir = "/mnt/host/" + os.Getenv("HOSTNAME")
outputDir = "/mnt/host" + outputDir
}
}