fixed custom config and data paths

any specified custom data path was only being used for the config file.
All combinations of options should work together now.
pull/20/head
Harvey Tindall 4 years ago
parent bd8af153a9
commit 6436dba48f
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -113,7 +113,9 @@ func main() {
flag.Parse()
if app.config_path == *configPath && app.data_path != *dataPath {
app.config_path = filepath.Join(*dataPath, "config.ini")
app.data_path = *dataPath
} else if app.config_path != *configPath && app.data_path == *dataPath {
app.config_path = *configPath
} else {
app.config_path = *configPath
app.data_path = *dataPath

Loading…
Cancel
Save