mirror of
https://github.com/quitesimpleorg/hs9001.git
synced 2024-11-21 21:17:51 +01:00
Fix bug in cwd search and fix go-staticcheck regexp complaint
This commit is contained in:
parent
16752411e1
commit
b9e3a3629b
13
main.go
13
main.go
@ -282,7 +282,7 @@ func main() {
|
||||
|
||||
}
|
||||
historycmd := args[0]
|
||||
var rgx = regexp.MustCompile("\\s+\\d+\\s+(.*)")
|
||||
var rgx = regexp.MustCompile(`\s+\d+\s+(.*)`)
|
||||
rs := rgx.FindStringSubmatch(historycmd)
|
||||
if len(rs) == 2 {
|
||||
add(conn, NewHistoryEntry(rs[1], ret))
|
||||
@ -316,11 +316,14 @@ func main() {
|
||||
}
|
||||
|
||||
q := strings.Join(args, " ")
|
||||
cwdPath, err := filepath.Abs(workDir)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed parse working directory path: %s\n", err.Error())
|
||||
if workDir != "%" {
|
||||
workDir, 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)
|
||||
|
||||
results := search(conn, "%"+q+"%", workDir, beginTimestamp, endTimeStamp, retVal)
|
||||
|
||||
previousCmd := ""
|
||||
for e := results.Front(); e != nil; e = e.Next() {
|
||||
|
Loading…
Reference in New Issue
Block a user