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