Skip to content

Commit a67954c

Browse files
committed
v1.0.7
1 parent cff6d74 commit a67954c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.7]
9+
10+
### Fixed
11+
12+
- Fix Unity Hub executable location for Linux systems
13+
814
## [1.0.6]
915

1016
### Removed

lib/unity-path-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class UnityPathTools {
1717
switch (os) {
1818
case OS.Windows: return path.join('C:', 'Program Files', 'Unity Hub', 'Unity Hub.exe');
1919
case OS.MacOS: return path.join('/', 'Applications', 'Unity Hub.app', 'Contents', 'MacOS', 'Unity Hub');
20-
case OS.Linux: return path.join('~', 'Unity Hub', 'Unity Hub');
20+
case OS.Linux: return path.join('~', 'Applications', 'Unity Hub.AppImage');
2121
default: throw new Error('Operating system not supported!');
2222
}
2323
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinomite-studios/unity-azure-pipelines-tasks-lib",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "A library containing common implementations for pipeline tasks available in the Unity Tools for Azure DevOps extension.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)