diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 07:24:40 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 07:24:40 +0200 |
commit | d5f9085737874dcef201a8ddbdc0b8cb32d969b1 (patch) | |
tree | 962aaf5781fa63891c995804051ade2c3ef8a2af /init.sh | |
parent | bf634db74ecdd43263042c2a9f9a25bcb4a5d6ba (diff) | |
download | arching-kaos-tools-d5f9085737874dcef201a8ddbdc0b8cb32d969b1.tar.gz arching-kaos-tools-d5f9085737874dcef201a8ddbdc0b8cb32d969b1.tar.bz2 arching-kaos-tools-d5f9085737874dcef201a8ddbdc0b8cb32d969b1.zip |
possible fix for not installing genesis
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ if [[ ! -d $DATADIR ]]; then mkdir $DATADIR ;fi if [[ ! -d $ARCHIVESDIR ]]; then mkdir $ARCHIVESDIR ;fi if [[ ! -f $LOGSFILE ]]; then touch $LOGSFILE ;fi if [[ ! -f $GENESIS ]] ; then touch $GENESIS;fi -if [[ ! -f $ZGENESIS ]] ; then echo "$(ipfs add -q $GENESIS)" > $ZGENESIS;fi +if [[ -f $ZGENESIS ]] ; then echo "$(ipfs add -q $GENESIS)" > $ZGENESIS;fi if [[ ! -f $ZCHAIN ]] ; then echo "$(ipfs key gen zchain)" > $ZCHAIN;fi if [[ ! -f $ZLATEST ]] ; then cp $ZGENESIS $ZLATEST;fi if [[ ! -f $ZCHAINASC ]] ; then gpg -bao $ZCHAINASC $ZCHAIN;fi |