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 1116045 commit a1ce1ffCopy full SHA for a1ce1ff
up-generic.sh
@@ -1,8 +1,17 @@
1
+if [[ $# -ne 1 ]];
2
+then
3
+ echo "up-generic.sh (# of instances)"
4
+ exit
5
+fi
6
+
7
+#This is for internal testing only
8
+declare ARCH=$(uname -m)-linux-gnu
9
10
#This is for internal testing only
-: ${ARCH:=x86_64-linux-gnu}
-: ${bitcoind=10}
-: ${lnd=10}
-: ${tor=10}
11
+: ${ARCH:=$(uname -m)-linux-gnu}
12
+: ${bitcoind=${!#}}
13
+: ${lnd=${!#}}
14
+: ${tor=${!#}}
15
16
python plebnet_generate.py ARCH=$ARCH bitcoind=$bitcoind lnd=$lnd tor=$tor
17
0 commit comments