Make --new-config accept path from --config. Closes #410.

This commit is contained in:
Kailash Nadh 2021-06-29 20:10:59 +05:30
parent ea9895e732
commit 5e2c24b662
2 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,6 @@
package main
import (
"errors"
"fmt"
"io/ioutil"
"os"
@ -161,9 +160,9 @@ func recordMigrationVersion(ver string, db *sqlx.DB) error {
return err
}
func newConfigFile() error {
if _, err := os.Stat("config.toml"); !os.IsNotExist(err) {
return errors.New("config.toml exists. Remove it to generate a new one")
func newConfigFile(path string) error {
if _, err := os.Stat(path); !os.IsNotExist(err) {
return fmt.Errorf("%s exists. Remove it to generate a new one.", path)
}
// Initialize the static file system into which all
@ -181,7 +180,7 @@ func newConfigFile() error {
ReplaceAll(b, []byte(fmt.Sprintf(`admin_password = "%s"`, pwd)))
}
return ioutil.WriteFile("config.toml", b, 0644)
return ioutil.WriteFile(path, b, 0644)
}
// checkSchema checks if the DB schema is installed.

View file

@ -85,11 +85,12 @@ func init() {
// Generate new config.
if ko.Bool("new-config") {
if err := newConfigFile(); err != nil {
path := ko.Strings("config")[0]
if err := newConfigFile(path); err != nil {
lo.Println(err)
os.Exit(1)
}
lo.Println("generated config.toml. Edit and run --install")
lo.Printf("generated %s. Edit and run --install", path)
os.Exit(0)
}