Skip to content

Commit 70dbda8

Browse files
committed
Fix quoting issue in Makefile for SIGNING_IDENTITY
Ensured that SIGNING_IDENTITY is properly quoted when passed to the create-frameworks.sh script to handle values with spaces correctly.
1 parent 3bdbd21 commit 70dbda8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ build:
5656
$(CWD)/scripts/build.sh
5757

5858
frameworks:
59-
$(CWD)/scripts/create-frameworks.sh $(SIGNING_IDENTITY)
59+
$(CWD)/scripts/create-frameworks.sh "$(SIGNING_IDENTITY)"
6060

6161
# Validation target to check signing identity
6262
check-signing-identity:

0 commit comments

Comments
 (0)