From 67399ac038a923c64865f8a21644101bd45507f0 Mon Sep 17 00:00:00 2001 From: syui Date: Sun, 7 Dec 2025 14:55:40 +0900 Subject: [PATCH] add setup cp file --- ios/setup.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ios/setup.zsh b/ios/setup.zsh index e66de42..93caa87 100755 --- a/ios/setup.zsh +++ b/ios/setup.zsh @@ -130,6 +130,12 @@ function ios-copy-new-files() { echo "✅ Copied License.tsx" fi + # Copy logo.png to icon.png if it doesn't exist + if [ -f "$target_dir/assets/logo.png" ] && [ ! -f "$target_dir/assets/icon.png" ]; then + cp "$target_dir/assets/logo.png" "$target_dir/assets/icon.png" + echo "✅ Created assets/icon.png from assets/logo.png" + fi + echo "" }