mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 22:13:36 +08:00

* Refactored build command * Update v2/cmd/wails/build.go Co-authored-by: stffabi <stffabi@users.noreply.github.com> * WIP * Refactor `wails doctor` * Refactor `wails dev` * Refactor `wails dev` * Fix merge conflict * Fix test * Update build_and_test.yml Co-authored-by: stffabi <stffabi@users.noreply.github.com>
10 lines
188 B
Bash
10 lines
188 B
Bash
#! /bin/bash
|
|
|
|
echo -e "Start running the script..."
|
|
cd ../
|
|
|
|
echo -e "Start building the app for macos platform..."
|
|
wails build --clean --platform darwin
|
|
|
|
echo -e "End running the script!"
|