mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2024-11-05 19:45:49 +00:00
Fixed code style issues reported by Prettier
This commit is contained in:
parent
c12ce02684
commit
599dc9e0fa
2 changed files with 6 additions and 8 deletions
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
|
@ -61956,8 +61956,7 @@ function getArch(arch) {
|
||||||
case 'ppc64':
|
case 'ppc64':
|
||||||
if (endianness == 'LE') {
|
if (endianness == 'LE') {
|
||||||
arch = 'ppc64le';
|
arch = 'ppc64le';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
arch = 'ppc64';
|
arch = 'ppc64';
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -28,8 +28,7 @@ export function getArch(arch: string): string {
|
||||||
case 'ppc64':
|
case 'ppc64':
|
||||||
if (endianness == 'LE') {
|
if (endianness == 'LE') {
|
||||||
arch = 'ppc64le';
|
arch = 'ppc64le';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
arch = 'ppc64';
|
arch = 'ppc64';
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue