mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-16 18:01:46 +02:00
More fixes for github action failures + add link to where to file a bug
This commit is contained in:
@ -17,8 +17,5 @@ ghaction-runner-hostname 0 echo thisisrecorded
|
||||
ghaction-runner-hostname 0 hishtory enable
|
||||
ghaction-runner-hostname 0 echo bar
|
||||
ghaction-runner-hostname 0 echo foo
|
||||
ghaction-runner-hostname 1 ls /foo
|
||||
ghaction-runner-hostname 1 ls /bar
|
||||
ghaction-runner-hostname 1 ls /a
|
||||
ghaction-runner-hostname 0 hishtory query
|
||||
ghaction-runner-hostname 0 hishtory status
|
||||
|
@ -311,11 +311,11 @@ func parseCrossPlatformInt(data string) (int64, error) {
|
||||
func getLastCommand(history string) (string, error) {
|
||||
split := strings.SplitN(strings.TrimSpace(history), " ", 2)
|
||||
if len(split) <= 1 {
|
||||
return "", fmt.Errorf("got unexpected bash history line: %#v, please open a bug", history)
|
||||
return "", fmt.Errorf("got unexpected bash history line: %#v, please open a bug at github.com/ddworken/hishtory", history)
|
||||
}
|
||||
split = strings.SplitN(split[1], " ", 2)
|
||||
if len(split) <= 1 {
|
||||
return "", fmt.Errorf("got unexpected bash history line: %#v, please open a bug", history)
|
||||
return "", fmt.Errorf("got unexpected bash history line: %#v, please open a bug at github.com/ddworken/hishtory", history)
|
||||
}
|
||||
return split[1], nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user