Skip to content

Commit

Permalink
Merge pull request #144 from hasinthaindrajee/2.x.x
Browse files Browse the repository at this point in the history
Fix issue while importing exploded API in windows environment.
  • Loading branch information
Bhathiya Jayasekara authored Dec 2, 2019
2 parents c6d0ab0 + ba6674d commit aa4ea71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion import-export-cli/cmd/importAPI.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func getTempApiDirectory(file string) (string, error) {
if fileIsDir {
// copy dir to a temp location
utils.Logln(utils.LogPrefixInfo+"Copying from", file, "to", tmpDir)
dest := path.Join(tmpDir, filepath.Base(file))
dest := filepath.Join(tmpDir, filepath.Base(file))
err = utils.CopyDir(file, dest)
if err != nil {
return "", err
Expand Down

0 comments on commit aa4ea71

Please sign in to comment.