mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
10 lines
159 B
Bash
Executable File
10 lines
159 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
(
|
|
cd "${ROOT_DIR}/apps/ios"
|
|
fastlane ios screenshots
|
|
)
|