Skip to content

Commit ed05a9b

Browse files
unity-cli@v1.2.2
- fix macOS x86_64 command runs - added additional version checks
1 parent b8339c3 commit ed05a9b

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/build-options.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
],
77
"unity-version": [
88
"4.7.2",
9+
"5.6.7f1 (e80cc3114ac1)",
10+
"2017.x",
11+
"2018.x",
12+
"2019.x",
13+
"2020.x",
914
"2021.x",
1015
"2022.x",
1116
"6000.0.x",
@@ -34,6 +39,10 @@
3439
{
3540
"os": "macos-latest",
3641
"unity-version": "4.7.2"
42+
},
43+
{
44+
"os": "ubuntu-latest",
45+
"unity-version": "5.6.7f1 (e80cc3114ac1)"
3746
}
3847
]
3948
}

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,17 @@ unity-cli activate-license --email <your-email> --password <your-password> --ser
6767

6868
#### Create a New Project from a Template
6969

70-
> [!NOTE] Regex patterns are supported for the `--template` option. For example, to create a 3D project with either the standard or cross-platform template, you can use `com.unity.template.3d(-cross-platform)?`.
70+
> [!NOTE]
71+
> Regex patterns are supported for the `--template` option. For example, to create a 3D project with either the standard or cross-platform template, you can use `com.unity.template.3d(-cross-platform)?`.
7172
7273
```bash
7374
unity-cli create-project --name "MyGame" --template com.unity.template.3d(-cross-platform)? --unity-editor <path-to-editor>
7475
```
7576

7677
#### Open a project from the command line
7778

78-
> [!NOTE] If you run this command in the same directory as your Unity project, you can omit the `--unity-project`, `--unity-version`, and `--unity-editor` options.
79+
> [!TIP]
80+
> If you run this command in the same directory as your Unity project, you can omit the `--unity-project`, `--unity-version`, and `--unity-editor` options.
7981
8082
```bash
8183
unity-cli open-project

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rage-against-the-pixel/unity-cli",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "A command line utility for the Unity Game Engine.",
55
"author": "RageAgainstThePixel",
66
"license": "MIT",

0 commit comments

Comments
 (0)