mirror of
https://git.um-react.app/um/cli.git
synced 2025-11-27 19:23:02 +00:00
fix #107: windows dnd path error
This commit is contained in:
@@ -135,6 +135,11 @@ func appMain(c *cli.Context) (err error) {
|
||||
}
|
||||
}
|
||||
|
||||
input, absErr := filepath.Abs(input)
|
||||
if absErr != nil {
|
||||
return fmt.Errorf("get abs path failed: %w", absErr)
|
||||
}
|
||||
|
||||
output := c.String("output")
|
||||
inputStat, err := os.Stat(input)
|
||||
if err != nil {
|
||||
@@ -147,6 +152,10 @@ func appMain(c *cli.Context) (err error) {
|
||||
} else {
|
||||
inputDir = path.Dir(input)
|
||||
}
|
||||
inputDir, absErr = filepath.Abs(inputDir)
|
||||
if absErr != nil {
|
||||
return fmt.Errorf("get abs path (inputDir) failed: %w", absErr)
|
||||
}
|
||||
|
||||
if output == "" {
|
||||
// Default to where the input dir is
|
||||
|
||||
Reference in New Issue
Block a user