diff options
-rw-r--r-- | util/autoport/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/autoport/main.go b/util/autoport/main.go index b7130b240e..18fb694d1a 100644 --- a/util/autoport/main.go +++ b/util/autoport/main.go @@ -8,6 +8,7 @@ import ( "fmt" "log" "os" + "path/filepath" "sort" "strings" ) @@ -903,4 +904,6 @@ private package GMA.Mainboard is end GMA.Mainboard; `) } + outputPath, _ := filepath.Abs(ctx.BaseDirectory) + fmt.Printf("Done! Generated sources are in %s\n", outputPath) } |