Skip to content

Commit 7aa7534

Browse files
committed
Fix build issue
1 parent 6293746 commit 7aa7534

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

v3/Taskfile.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ tasks:
3030
- rm -rf {{.TEMPLATE_DIR}}
3131
- mkdir -p {{.TEMPLATE_DIR}}
3232

33-
cli:install:
33+
install:
3434
dir: cmd/wails3
35+
silent: true
3536
cmds:
3637
- go install
3738
- echo "Installed wails CLI"
@@ -67,8 +68,9 @@ tasks:
6768
- go get -u github.com/go-task/task/v3
6869

6970
reinstall-cli:
70-
dir: cmd/wails
71+
dir: cmd/wails3
7172
internal: true
73+
silent: true
7274
cmds:
7375
- go install
7476
- echo "Reinstalled wails CLI"

v3/internal/assetserver/build_production.go

-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import (
77
"net/http"
88
)
99

10-
func defaultIndexHTML() []byte {
11-
return []byte{}
12-
}
13-
1410
func NewAssetFileServer(vfs fs.FS) http.Handler {
1511
return newAssetFileServerFS(vfs)
1612
}

0 commit comments

Comments
 (0)