Resolve CWD arguments as absolute path

Previously when calling e.g 'hs9001 search -cwd .' we would search
for a litteral '.' in the database. Now we resolve that argument
relative to the CWD.
This commit is contained in:
lawl 2021-06-05 14:28:02 +02:00
parent 70e66f47ba
commit c480519fca
1 changed files with 5 additions and 1 deletions

View File

@ -314,7 +314,11 @@ func main() {
}
q := strings.Join(args, " ")
results := search(conn, "%"+q+"%", workDir, beginTimestamp, endTimeStamp, retVal)
cwdPath, err := filepath.Abs(workDir)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed parse working directory path: %s\n", err.Error())
}
results := search(conn, "%"+q+"%", cwdPath, beginTimestamp, endTimeStamp, retVal)
previousCmd := ""
for e := results.Front(); e != nil; e = e.Next() {