mirror of
https://github.com/beego/bee.git
synced 2024-10-31 18:50:54 +00:00
Merge pull request #282 from oter/develop
Fix .exe postfix issue on Windows platform.
This commit is contained in:
commit
8191997cbf
@ -23,6 +23,7 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
var cmdMigrate = &Command{
|
||||
@ -146,7 +147,11 @@ func migrateRefresh(currpath, driver, connStr string) {
|
||||
// migrate generates source code, build it, and invoke the binary who does the actual migration
|
||||
func migrate(goal, currpath, driver, connStr string) {
|
||||
dir := path.Join(currpath, "database", "migrations")
|
||||
binary := "m"
|
||||
postfix := ""
|
||||
if runtime.GOOS == "windows" {
|
||||
postfix = ".exe"
|
||||
}
|
||||
binary := "m" + postfix
|
||||
source := binary + ".go"
|
||||
// connect to database
|
||||
db, err := sql.Open(driver, connStr)
|
||||
|
Loading…
Reference in New Issue
Block a user