ai/at
1
0

add setup cp file

This commit is contained in:
2025-12-07 14:55:40 +09:00
parent c2d7a2b2e5
commit 67399ac038

View File

@@ -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 ""
}