[1.2] 리플레이

- 리플레이 파일 이름 유지하도록 수정
This commit is contained in:
2025-05-13 17:37:24 +09:00
parent 5f68795185
commit d8ccbf209c
3 changed files with 21 additions and 15 deletions

View File

@ -44,11 +44,12 @@ func lastExecutionArgs(verpath string) []string {
return out
}
func (hc *houstonClient) uploadToAppendFile(filePath string, name string, version string) {
func (hc *houstonClient) uploadToAppendFile(filePath string, name string, version string, uploadedFileName string) {
hc.uploadChan <- uploadRequest{
filePath: filePath,
name: name,
version: version,
filePath: filePath,
name: name,
version: version,
uploadedFileName: uploadedFileName,
}
}