Skip to content

Commit ade8112

Browse files
Change "Licence" to "License"
1 parent aeaba18 commit ade8112

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ To install a different version, call setup-android with desired long version as
6565
Current cmdline tools version can be found at https://developer.android.com/studio#command-line-tools-only
6666

6767

68-
# Android SDK Licences
68+
# Android SDK Licenses
6969

70-
Android SDK (unsurprisingly) is not public domain software, it comes with a licence.
70+
Android SDK (unsurprisingly) is not public domain software, it comes with a license.
7171

72-
Input parameter `accept-android-sdk-licenses` decides if Android SDK licences should be agreed to on behalf of the user of this action.
73-
Default option is 'yes', because otherwise SDK is unusable until said licences are agreed to.
72+
Input parameter `accept-android-sdk-licenses` decides if Android SDK licenses should be agreed to on behalf of the user of this action.
73+
Default option is 'yes', because otherwise SDK is unusable until said licenses are agreed to.
7474

75-
Licences are quite long, to prevent a wall of text in the action output, licences can be agreed to silently.
76-
Input parameter `log-accepted-android-sdk-licenses` controls whether licence texts should be printed or omitted from the text output. Defaults to 'true'.
75+
licenses are quite long, to prevent a wall of text in the action output, licenses can be agreed to silently.
76+
Input parameter `log-accepted-android-sdk-licenses` controls whether license texts should be printed or omitted from the text output. Defaults to 'true'.
7777

7878
# Thanks
7979
Based on the project [android-problem-matchers-action](https://github.com/jonasb/android-problem-matchers-action) from [@jonasb](https://github.com/jonasb)

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ inputs:
99
default: '10406996'
1010

1111
accept-android-sdk-licenses:
12-
description: 'Android SDK is usable only after the licence agreement. Should setup-android agree to the licences, provided by "sdkmanager --licenses"'
12+
description: 'Android SDK is usable only after the license agreement. Should setup-android agree to the licences, provided by "sdkmanager --licenses"'
1313
required: false
1414
default: 'true'
1515

1616
log-accepted-android-sdk-licenses:
17-
description: 'Should accepted licences be logged. If not, accepted licences will be accepted silently'
17+
description: 'Should accepted licenses be logged. If not, accepted licences will be accepted silently'
1818
required: false
1919
default: 'true'
2020

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28266,7 +28266,7 @@ function run() {
2826628266
}
2826728267
const sdkManagerExe = yield installSdkManager();
2826828268
if (core.getBooleanInput('accept-android-sdk-licenses')) {
28269-
core.info('Accepting Android SDK licences');
28269+
core.info('Accepting Android SDK licenses');
2827028270
yield callSdkManager(sdkManagerExe, '--licenses', core.getBooleanInput('log-accepted-android-sdk-licenses'));
2827128271
}
2827228272
yield callSdkManager(sdkManagerExe, 'tools');

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ async function run(): Promise<void> {
149149
const sdkManagerExe = await installSdkManager()
150150

151151
if (core.getBooleanInput('accept-android-sdk-licenses')) {
152-
core.info('Accepting Android SDK licences')
152+
core.info('Accepting Android SDK licenses')
153153
await callSdkManager(
154154
sdkManagerExe,
155155
'--licenses',

0 commit comments

Comments
 (0)