mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 11:10:47 +08:00
21 lines
301 B
Bash
Executable File
21 lines
301 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Build runtime
|
|
echo "**** Building Runtime ****"
|
|
cd runtime/js
|
|
npm run build
|
|
cd ../..
|
|
|
|
echo "**** Packing Assets ****"
|
|
mewn
|
|
|
|
echo "**** Installing Wails locally ****"
|
|
cd cmd/wails
|
|
go install
|
|
cd ../..
|
|
|
|
echo "**** Tidying the mods! ****"
|
|
go mod tidy
|
|
|
|
echo "**** WE ARE DONE! ****"
|