According to the latest System Report, hub
is supposed to be preinstalled in the Bitrise stacks.
However, in the script step, I can’t find the hub
command and it gives me an error hub: command not found
steps:
- script@1:
inputs:
- content: |-
#!/bin/bash
set -ex
# these are OK
which brew
which carthage
which swiftlint
# hub: command not found
which hub
hub -h
I thought the commands listed in the system reports is always accessible, but isn’t that always true? Or, the system reports might be incorrect?
Of course, it is possible to install manually by brew install hub
, but I’d rather avoid that if it’s actually preinstalled.