Skip to content

Commit af1f79d

Browse files
committed
Default to project name generative-ai-swift
1 parent c998a02 commit af1f79d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/xcresult_logs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ def project_from_workspace_path(path):
111111
if ext == '.xcworkspace':
112112
_logger.debug('Using project %s from workspace %s', root, path)
113113
return root
114+
elif path == '.':
115+
project = 'generative-ai-swift'
116+
_logger.debug(f'Using project {project} from workspace {path}')
117+
return project
114118

115119
raise ValueError('%s is not a valid workspace path' % path)
116120

0 commit comments

Comments
 (0)