We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d087fe3 commit 04ac47eCopy full SHA for 04ac47e
scripts/wallet-verification-code.sh
@@ -2,10 +2,12 @@
2
3
source .env
4
5
+walletconnect_txt="static/.well-known/walletconnect.txt"
6
+
7
mkdir -p static/.well-known
8
-if [ ! -f static/.well-known/walletconnect.txt ]; then
- touch static/.well-known/walletconnect.txt
9
+if [ ! -f $walletconnect_txt ]; then
10
+ touch $walletconnect_txt
11
fi
12
-echo $WALLET_CONNECT_VERIFICATION_CODE > static/.well-known/walletconnect.txt
13
+echo $WALLET_CONNECT_VERIFICATION_CODE > $walletconnect_txt
0 commit comments