Skip to content

Commit 47161f1

Browse files
- fix 2021.x linux dep installer
1 parent 5d9cc00 commit 47161f1

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

dist/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36252,7 +36252,6 @@ async function installUnity(unityVersion, modules) {
3625236252
}
3625336253
if (modules.length > 0) {
3625436254
for (const module of modules) {
36255-
core.info(` > with module: ${module}`);
3625636255
args.push('-m', module);
3625736256
}
3625836257
args.push('--cm');

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/install-linux-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ case "$unityVersion" in
1717
sudo dpkg -i "libssl1.0.0_1.0.2g-1ubuntu4.20_${arch}.deb"
1818
rm "libssl1.0.0_1.0.2g-1ubuntu4.20_${arch}.deb"
1919
;;
20-
2019.3.*|2019.4.*|2020.*)
20+
2019.3.*|2019.4.*|2020.*|2021.*)
2121
curl -LO "https://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"
2222
sudo dpkg -i "libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"
2323
rm "libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unity-setup",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "A GitHub action for setting up the Unity Game Engine for CI/CD workflows.",
55
"author": "RageAgainstThePixel",
66
"license": "MIT",

src/install-linux-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ case "$unityVersion" in
1717
sudo dpkg -i "libssl1.0.0_1.0.2g-1ubuntu4.20_${arch}.deb"
1818
rm "libssl1.0.0_1.0.2g-1ubuntu4.20_${arch}.deb"
1919
;;
20-
2019.3.*|2019.4.*|2020.*)
20+
2019.3.*|2019.4.*|2020.*|2021.*)
2121
curl -LO "https://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"
2222
sudo dpkg -i "libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"
2323
rm "libssl1.1_1.1.0g-2ubuntu4_${arch}.deb"

src/unity-hub.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ async function installUnity(unityVersion: UnityVersion, modules: string[]): Prom
438438

439439
if (modules.length > 0) {
440440
for (const module of modules) {
441-
core.info(` > with module: ${module}`);
442441
args.push('-m', module);
443442
}
444443

0 commit comments

Comments
 (0)