6
1
mirror of https://git.mills.io/saltyim/saltyim.git synced 2024-06-27 09:18:22 +00:00

Fix install instructions for salty-chat.sh for msgbus and salty cli tools

This commit is contained in:
James Mills 2022-03-26 12:40:57 +10:00
parent 4c88a24c87
commit 2641d08b2b

@ -9,13 +9,13 @@ if ! command -v jq > /dev/null; then
fi
if ! command -v msgbus > /dev/null; then
printf "missing msgbus command. Use: go install git.mills.io/prologic/msgbus/cmd/msgbus@master\n"
printf "missing msgbus command. Use: go install git.mills.io/prologic/msgbus/cmd/msgbus@latest\n"
exit 1
fi
for cmd in salty salty-keygen; do
if ! command -v $cmd > /dev/null; then
printf "missing %s command. Use go install go.mills.io/salty/cmd/$cmd@master\n" "$cmd"
printf "missing %s command. Use go install go.mills.io/salty/cmd/$cmd@latest\n" "$cmd"
exit 1
fi
done