You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a migration target against an external database, without using containers, the migrations fail looking for the goose binary. For example running make migrate_pre_batch_set by hand from this repo.
The make script is looking for goose at /bin/goose but because goose is installed with go get as part of the migration process itself on a live system goose ends up in the respective user's go path ~/go/bin/goose
Ideally we would defer to the local $PATH to handle the location the binary
The text was updated successfully, but these errors were encountered:
When running a migration target against an external database, without using containers, the migrations fail looking for the goose binary. For example running
make migrate_pre_batch_set
by hand from this repo.The make script is looking for goose at
/bin/goose
but because goose is installed with go get as part of the migration process itself on a live system goose ends up in the respective user's go path~/go/bin/goose
Ideally we would defer to the local $PATH to handle the location the binary
The text was updated successfully, but these errors were encountered: