mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-22 16:38:12 +00:00
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
source "${ROOT_DIR}/scripts/lib/ios-fastlane.sh"
|
|
|
|
(
|
|
cd "${ROOT_DIR}/apps/ios"
|
|
run_ios_fastlane ios screenshots
|
|
)
|