Skip to content

Commit

Permalink
Fix stash directory with spaces (stashapp#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
WithoutPants authored May 14, 2020
1 parent 52ea9f6 commit 1c1cbb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/api/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ func Start() {

_ = os.Mkdir(downloads, 0755)

config.Set(config.Stash, stash)
// #536 - set stash as slice of strings
config.Set(config.Stash, []string{stash})
config.Set(config.Generated, generated)
config.Set(config.Metadata, metadata)
config.Set(config.Cache, cache)
Expand Down

0 comments on commit 1c1cbb7

Please sign in to comment.