From 1fdad03398ef0dc0d4d4b4788be072f3905fcb4f Mon Sep 17 00:00:00 2001 From: qo-op Date: Sun, 6 Dec 2020 02:11:31 +0100 Subject: [PATCH] Astroport ID publish in bashrc --- .install/update_bashrc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.install/update_bashrc.sh b/.install/update_bashrc.sh index 36e19fa..4973eb0 100755 --- a/.install/update_bashrc.sh +++ b/.install/update_bashrc.sh @@ -17,9 +17,9 @@ export G1PUB=$(cat ~/.zen/secret.dunikey | grep 'pub:' | cut -d ' ' -f 2) || er+ [[ $er != "" ]] && echo "$er" && exit 1 echo "### ASTROPORT IDENTITY ###" >> ~/.bashrc -echo "export YOU=$YOU" >> ~/.bashrc -echo "export G1PUB=$G1PUB" >> ~/.bashrc -echo "export IPFSNODEID=$IPFSNODEID" >> ~/.bashrc +echo "YOU=$YOU" >> ~/.bashrc +echo "G1PUB=$G1PUB" >> ~/.bashrc +echo "IPFSNODEID=$IPFSNODEID" >> ~/.bashrc source ~/.bashrc echo "UPDATE ~/.bashrc OK"