Skip to content

Commit c9636de

Browse files
devz906cursoragent
andcommitted
Improve error message when Xcode project not found
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 9277244 commit c9636de

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/unsigned-ipa.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ jobs:
5050
echo "project_type=" >> $GITHUB_OUTPUT
5151
echo "scheme=" >> $GITHUB_OUTPUT
5252
echo "workspace_name=" >> $GITHUB_OUTPUT
53-
echo "No Xcode project found"
53+
echo "ERROR: No Xcode project found at src/MeloNX/MeloNX.xcodeproj"
54+
echo "The Xcode project must be committed to git or generated before building."
55+
echo "Checked locations:"
56+
ls -la src/MeloNX/ 2>/dev/null || echo " src/MeloNX/ directory not found"
57+
find . -name "*.xcodeproj" -o -name "*.xcworkspace" 2>/dev/null | head -5 || echo " No .xcodeproj or .xcworkspace found"
5458
exit 0
5559
fi
5660

0 commit comments

Comments
 (0)