From fad819b7e58cadc37595753535c42e07055d0716 Mon Sep 17 00:00:00 2001 From: Rafael Taranto Date: Fri, 9 Nov 2018 11:42:57 -0200 Subject: [PATCH] Fix openssl version --- bin/cert-gen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cert-gen.sh b/bin/cert-gen.sh index f3b89a2f..c9bdffa1 100755 --- a/bin/cert-gen.sh +++ b/bin/cert-gen.sh @@ -20,7 +20,7 @@ echo "Generating mnemonic..." MNEMONIC_DIR=$CONFIG_DIR/mnemonics MNEMONIC_FILE=$MNEMONIC_DIR/mnemonic.txt mkdir -p $MNEMONIC_DIR >> $LOG_FILE 2>&1 -SEED=$(openssl-1.0 rand -hex 32) +SEED=$(openssl rand -hex 32) MNEMONIC=$($PWD/bin/bip39 $SEED) echo "$MNEMONIC" > $MNEMONIC_FILE