You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
276 B
12 lines
276 B
|
2 months ago
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
|
||
|
|
echo "=== Daily Stock Analysis Desktop Build (macOS) ==="
|
||
|
|
|
||
|
|
bash "${SCRIPT_DIR}/build-backend-macos.sh"
|
||
|
|
bash "${SCRIPT_DIR}/build-desktop-macos.sh"
|
||
|
|
|
||
|
|
echo "All builds completed."
|