Skip to content

Commit 992f388

Browse files
committed
chore: sync with microG unofficial installer
Signed-off-by: ale5000 <15793015+ale5000-git@users.noreply.github.com>
1 parent 29fe5a4 commit 992f388

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.github/workflows/auto-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: "${{ github.event_name == 'push' }}"
3131
concurrency:
3232
group: "${{ github.repository_id }}-${{ github.workflow }}-nightly"
33-
cancel-in-progress: true
33+
cancel-in-progress: false
3434
permissions:
3535
contents: write # Needed to delete a release and to modify a tag
3636
id-token: write # Needed to attest build provenance

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Donations
9999

100100
I maintain this project on my own in my spare time — the finite, precious kind that competes with sleep, meals eaten while staring at a terminal, and the occasional social obligation.
101101

102-
If it's saved you time, frustration, or a trip to the Google ecosystem, please consider supporting its development!
102+
If it's saved you time, or frustration, please consider supporting its development!
103103

104104
Wondering how? Check out all the ways to `fuel this project <./docs/DONATE.rst>`_ — coffee, kind words, or cold hard crypto, it's all welcome.
105105
*(No pressure. But the coffee does make the bugs fix themselves slightly faster.)*

docs/CONTRIBUTING.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,25 @@ To maintain a high standard of code quality, we use automated tools to check for
3030

3131
These checks run automatically on every pull request via CI.
3232

33-
To run ShellCheck locally:
33+
To run ShellCheck locally on a single script:
3434

3535
.. code-block:: sh
3636
3737
shellcheck <path/to/script.sh>
3838
39+
To run ShellCheck on all shell scripts in the project at once:
40+
41+
.. code-block:: sh
42+
43+
find . -path '*/.*' -prune -o -name '*.sh' -exec shellcheck '{}' +
44+
45+
To run REUSE locally:
46+
47+
.. code-block:: sh
48+
49+
pip install reuse
50+
reuse lint
51+
3952
Recognition
4053
===========
4154

0 commit comments

Comments
 (0)