We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6693de6 commit 7e38d27Copy full SHA for 7e38d27
action.yml
@@ -249,7 +249,7 @@ runs:
249
read -r -a make_args <<< "${make_command}"
250
251
# Choose Ubuntu or a Docker container to compile the kernel.
252
- if [[ "${arch_info}" == "aarch64" && -n "${docker_compile}" ]]; then
+ if [[ "$(uname -m)" == "aarch64" && -n "${docker_compile}" ]]; then
253
echo -e "The docker container [ ${docker_container} ] is running, using the Armbian system to compile the kernel."
254
docker exec -i "${docker_container}" bash -c 'bash "$0" -u && bash "$0" "$@"' "${docker_script}" "${make_args[@]}"
255
else
0 commit comments