14 lines
264 B
Bash
Executable File
14 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
||
set -euo pipefail
|
||
|
||
cd "$(dirname "$0")/.."
|
||
|
||
if ! command -v xcodegen >/dev/null 2>&1; then
|
||
echo "xcodegen bulunamadı. Kurulum: brew install xcodegen"
|
||
exit 1
|
||
fi
|
||
|
||
xcodegen generate
|
||
|
||
echo "Tamamlandı: ios/Ratebubble.xcodeproj oluşturuldu."
|