kanidm/scripts/install_macos_dependencies.sh
Firstyear 2e6d940691
Remove WASM (#3148)
liberal party took over, more cuts
2024-10-26 17:19:13 +10:00

15 lines
245 B
Bash
Executable file

#!/bin/bash
set -e
ERROR=0
if [ -z "$(which cargo)" ]; then
echo "You don't have cargo / rust installed!"
echo "Go to <https://www.rust-lang.org/tools/install> for instructions!"
ERROR=1
fi
if [ $ERROR -eq 1 ]; then
exit 1
fi