Skip to content

Commit

Permalink
[release] v0.14.6
Browse files Browse the repository at this point in the history
  • Loading branch information
azukaar committed Feb 16, 2024
1 parent 57b6657 commit 8f39035
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.14.5",
"version": "0.14.6",
"description": "",
"main": "test-server.js",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 8f39035

Please sign in to comment.