Skip to content
Snippets Groups Projects
Unverified Commit 816ae5ac authored by Newbyte's avatar Newbyte :snowflake: Committed by Oliver Smith
Browse files

pmb.sideload: Run $ uname -m in subshell (MR 2390)

Some shells, in particular Nushell, replace the built-in
POSIX-compatible uname with a custom one that does not support common
flags. I opened an issue in the Nushell repository about this, but it
was rejected on the grounds that POSIX compatibility is not a goal. As
such, run this in a subshell to ensure that we get the expected uname
interface.

Nushell issue: https://github.com/nushell/nushell/issues/12570
parent 8b9648b0
No related branches found
No related tags found
1 merge request!2390pmb.sideload: Run $ uname -m in subshell + Annotate "None" return types
Pipeline #188672 passed
......@@ -50,7 +50,10 @@ def scp_abuild_key(args: PmbArgs, user: str, host: str, port: str) -> None:
def ssh_find_arch(args: PmbArgs, user: str, host: str, port: str) -> Arch:
"""Connect to a device via ssh and query the architecture."""
logging.info(f"Querying architecture of {user}@{host}")
command = ["ssh", "-p", port, f"{user}@{host}", "uname -m"]
# Run command in a subshell in case the foreign device has a weird uname
# implementation, e.g. Nushell.
architecture_cmd = shlex.quote("uname -m")
command = ["ssh", "-p", port, f"{user}@{host}", f"sh -c {architecture_cmd}"]
output = pmb.helpers.run.user_output(command)
# Split by newlines so we can pick out any irrelevant output, e.g. the "permanently
# added to list of known hosts" warnings.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment