Skip to content

Commit

Permalink
add bash command again
Browse files Browse the repository at this point in the history
This commit fixes an accidental removal of
`bash` from variable `ssh_bash_call` in
function `assert_ssh_access`.
  • Loading branch information
christian-monch authored and mih committed Apr 25, 2024
1 parent 409b154 commit dccdd0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datalad_next/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ def assert_ssh_access(
ssh_bin,
'-i', seckey,
'-p', port,
f'{login}@{host}'
f'{login}@{host}',
'bash',
]
# now try if this is a viable configuration
# verify execute and write permissions (implicitly also POSIX path handling
Expand Down

0 comments on commit dccdd0d

Please sign in to comment.