Compare commits

..

2 Commits

Author SHA1 Message Date
cfe21e786d Handle HW fallback retry return 2025-12-09 12:09:12 -05:00
16bdf4553f Clean Go cache automatically at build start 2025-12-09 12:05:27 -05:00
3 changed files with 7 additions and 1 deletions

View File

@ -6230,7 +6230,9 @@ func (s *appState) startConvert(status *widget.Label, btn, cancelBtn *widget.But
_ = logFile.Close()
}
s.convertCancel = nil
return s.executeConvertJobWithFallback(ctx, job, progressCallback, true)
if err := s.executeConvertJobWithFallback(ctx, job, progressCallback, true); err == nil {
return
}
}
fyne.CurrentApp().Driver().DoFromGoroutine(func() {

View File

@ -31,6 +31,8 @@ cd "$PROJECT_ROOT"
echo "🧹 Cleaning previous builds and cache..."
go clean -cache -modcache -testcache 2>/dev/null || true
rm -f "$BUILD_OUTPUT" 2>/dev/null || true
# Also clear build cache directory to avoid permission issues
rm -rf "${GOCACHE:-$HOME/.cache/go-build}" 2>/dev/null || true
echo "✓ Cache cleaned"
echo ""

View File

@ -52,6 +52,8 @@ case "$OS" in
echo "🧹 Cleaning previous builds..."
rm -f VideoTools.exe 2>/dev/null || true
# Clear Go cache to avoid permission issues
go clean -cache -modcache -testcache 2>/dev/null || true
echo "✓ Cache cleaned"
echo ""