We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906d807 commit c9947feCopy full SHA for c9947fe
scripts/check-charon-install.sh
@@ -7,10 +7,10 @@ if [[ "$1" == "--force" ]]; then
7
fi
8
9
rebuild() {
10
- if which rustup 2> /dev/null 1>&2; then
11
- make test
12
- elif which nix 2> /dev/null 1>&2; then
+ if which nix 2> /dev/null 1>&2; then
13
nix develop --command bash -c "make test"
+ elif which rustup 2> /dev/null 1>&2; then
+ make test
14
else
15
echo 'Error: Neither `rustup` nor `nix` appears to be installed. Install one or the other in order to build `charon`.'
16
exit 1
0 commit comments