fix #108: rel path resolution in windows
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
鲁树人 2024-11-05 16:27:14 +09:00
parent 2bfb5ffddf
commit 074e4f874f

View File

@ -12,7 +12,6 @@ import (
"io" "io"
"os" "os"
"os/signal" "os/signal"
"path"
"path/filepath" "path/filepath"
"runtime" "runtime"
"runtime/debug" "runtime/debug"
@ -150,7 +149,7 @@ func appMain(c *cli.Context) (err error) {
if inputStat.IsDir() { if inputStat.IsDir() {
inputDir = input inputDir = input
} else { } else {
inputDir = path.Dir(input) inputDir = filepath.Dir(input)
} }
inputDir, absErr = filepath.Abs(inputDir) inputDir, absErr = filepath.Abs(inputDir)
if absErr != nil { if absErr != nil {
@ -161,6 +160,7 @@ func appMain(c *cli.Context) (err error) {
// Default to where the input dir is // Default to where the input dir is
output = inputDir output = inputDir
} }
logger.Debug("resolve input/output path", zap.String("inputDir", inputDir), zap.String("input", input), zap.String("output", output))
outputStat, err := os.Stat(output) outputStat, err := os.Stat(output)
if err != nil { if err != nil {
@ -299,6 +299,8 @@ func (p *processor) processDir(inputDir string) error {
} }
func (p *processor) processFile(filePath string) error { func (p *processor) processFile(filePath string) error {
p.logger.Debug("processFile", zap.String("file", filePath), zap.String("inputDir", p.inputDir))
allDec := common.GetDecoder(filePath, p.skipNoopDecoder) allDec := common.GetDecoder(filePath, p.skipNoopDecoder)
if len(allDec) == 0 { if len(allDec) == 0 {
return errors.New("skipping while no suitable decoder") return errors.New("skipping while no suitable decoder")