10 lines
180 B
Batchfile
10 lines
180 B
Batchfile
@echo off
|
|
|
|
echo Start running the script...
|
|
cd ../
|
|
|
|
echo Start building the app for macos platform...
|
|
wails build --clean --platform darwin/universal
|
|
|
|
echo End running the script!
|