Add GOOSE_MIGRATION_DIR env variable (#337)

pull/342/head
Michael Fridman 2022-04-27 22:58:27 -04:00 committed by GitHub
parent c05d3375c8
commit 1311a0eb13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 5 deletions

View File

@ -15,7 +15,7 @@ import (
var (
flags = flag.NewFlagSet("goose", flag.ExitOnError)
dir = flags.String("dir", ".", "directory with migration files")
dir = flags.String("dir", defaultMigrationDir, "directory with migration files")
table = flags.String("table", "goose_db_version", "migrations table name")
verbose = flags.Bool("v", false, "enable verbose mode")
help = flags.Bool("h", false, "print help")
@ -27,7 +27,6 @@ var (
sslkey = flags.String("ssl-key", "", "file path to SSL key in pem format (only support on mysql)")
noVersioning = flags.Bool("no-versioning", false, "apply migration commands with no versioning, in file order, from directory pointed to")
)
var (
gooseVersion = ""
)
@ -56,6 +55,11 @@ func main() {
flags.Usage()
return
}
// The -dir option has not been set, check whether the env variable is set
// before defaulting to ".".
if *dir == defaultMigrationDir && os.Getenv(envGooseMigrationDir) != "" {
*dir = os.Getenv(envGooseMigrationDir)
}
switch args[0] {
case "init":
@ -125,6 +129,11 @@ func main() {
const (
envGooseDriver = "GOOSE_DRIVER"
envGooseDBString = "GOOSE_DBSTRING"
envGooseMigrationDir = "GOOSE_MIGRATION_DIR"
)
const (
defaultMigrationDir = "."
)
func mergeArgs(args []string) []string {
@ -234,7 +243,7 @@ SELECT 'down SQL query';
// initDir will create a directory with an empty SQL migration file.
func gooseInit(dir string) error {
if dir == "" || dir == "." {
if dir == "" || dir == defaultMigrationDir {
dir = "migrations"
}
_, err := os.Stat(dir)