* main:
Prepare for release 2.17.0.
Update test fixture dependencies.
Add option to toggle Linux hardware acceleration
Bump hosted-git-info from 2.8.8 to 2.8.9
Bump lodash from 4.17.19 to 4.17.21
* main:
Prepare for release 2.16.0.
Add support for arm64-v8a for Apple Silicon Macs
Add option to disable spellcheck
Bump y18n from 4.0.0 to 4.0.1
Update README.md
Add google/android-fhir to the list of projects that use android-emulator-runner (#132)
Add Wikipedia app to list of projects.
Add kiwix-android to the list of projects
Avoid Wrapping Script Code In Quotes
The exec() command only runs a program with literal argument strings.
It does not know how to do things like expanding environment variables,
or piping/redirection. Hence the way to get "shell intelligence"
is to use exec() to run the `sh` process with the command line string
as a parameter.
But the method being used to do this was:
exec.exec(`sh -c \\"${script}"`)
This has problems, because wrapping the script in quotes creates
issues when the script itself contains quotes. Escaping the string
correctly is a non-trivial problem, which also would create "noise"
in the debug output which would add confusion.
http://mywiki.wooledge.org/BashFAQ/050
The easiest way to work around this here is to use the array form of
exec() to pass exactly two parameters to `sh`. No manipulation of the
script string is needed with this approach:
exec.exec("sh", ["-c", script])
There are more cases in the project of `sh -c` usage which should also
be changed, and likely abstracted (shellExec()?) But this small patch
just fixes the most important case for the user-provided script.
---
Additionally, this removes the escaped backslash (`\\`) from the
start of the executed command. That was presumably to suppress the
use of aliases:
https://unix.stackexchange.com/questions/524254/why-are-backslashes-included-in-this-shell-script
But because this is invoking a non-interactive shell session, aliases
would not apply. Hence the extra backslash shouldn't be needed.
* main:
Prepare for release 2.14.3.
Always add path for cmdline-tools to support macos-11.0.
Gradle 6.8.
Add Hash Checker app projects to consumers list
Add LeakCanary to adopter list
* main:
Prepare for release 2.11.1.
Update npm packages.
Bump @actions/core from 1.2.4 to 1.2.6
Update to gradle 6.7-rc-1 for test fixture. Build with Java 15 on CI.
Improve GitHub Actions Gradle cache.
Add square/radiography to adopter list
Add cashapp/copper to adapter list
SDK Build tools 30.0.2.
Update fixture dependencies.
Gradle 6.6.
Update README.md
Update packages.
Build tools 30.0.1.
Use fs for writing licence files.
Update cmdline-tools to 2.1.