mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-16 01:48:06 +02:00
Fix github actions golden paths
This commit is contained in:
@ -39,7 +39,11 @@ func getInitialWd() string {
|
||||
return cwd
|
||||
}
|
||||
components := strings.Split(cwd, "/hishtory/")
|
||||
return components[0] + "/hishtory"
|
||||
dir := components[0] + "/hishtory"
|
||||
if IsGithubAction() {
|
||||
dir += "/hishtory"
|
||||
}
|
||||
return dir
|
||||
}
|
||||
|
||||
func ResetLocalState(t *testing.T) {
|
||||
|
Reference in New Issue
Block a user