Skip to content

Commit 04ac47e

Browse files
committed
minor change
1 parent d087fe3 commit 04ac47e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/wallet-verification-code.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
source .env
44

5+
walletconnect_txt="static/.well-known/walletconnect.txt"
6+
57
mkdir -p static/.well-known
68

7-
if [ ! -f static/.well-known/walletconnect.txt ]; then
8-
touch static/.well-known/walletconnect.txt
9+
if [ ! -f $walletconnect_txt ]; then
10+
touch $walletconnect_txt
911
fi
1012

11-
echo $WALLET_CONNECT_VERIFICATION_CODE > static/.well-known/walletconnect.txt
13+
echo $WALLET_CONNECT_VERIFICATION_CODE > $walletconnect_txt

0 commit comments

Comments
 (0)