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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user