refactor: hardcode sandbox tempdir as /tmp

This commit is contained in:
2026-03-19 15:34:58 +00:00
parent f8119e8bde
commit 96b0ce57d9
4 changed files with 4 additions and 7 deletions
-2
View File
@@ -60,11 +60,9 @@ func buildRecordShellScript() string {
var body bytes.Buffer
if err := recordShellTemplate.Execute(&body, struct {
VisibleHome string
VisibleTmp string
GitDate string
}{
VisibleHome: shQuote(recordVisibleHome),
VisibleTmp: shQuote(recordVisibleTmp),
GitDate: shQuote(recordGitDate),
}); err != nil {
panic(fmt.Sprintf("render record shell template: %v", err))