exercism / exercism/cli

[FEATURE REQUEST] Generate Xcode project and launch from cli

Open
#838 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Go
Stars
1.4k
Forks
363
Avg merge
6d 13h
Merged PRs (30d)
2

Description

I have created a script to download, generate Xcode project files and launch the exercise in Xcode for items on the swift track:

```
#! /bin/bash
OUTPUT=$(exercism download --exercise=$1 --track=swift | tail -1)
cd $OUTPUT
OUTPUT=$(swift package generate-xcodeproj | tail -1)
OUTPUT=${OUTPUT##generated:}
open $OUTPUT
```

I was wondering if something like this might/could be included natively in the cli?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.