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 32469cd commit 2115e2dCopy full SHA for 2115e2d
_run/multi/akash-provider/run.sh
@@ -26,7 +26,7 @@ mkdir -p "$AKASH_DATA"
26
masterKey="$AKASH_DATA/master.key"
27
providerKey="$AKASH_DATA/provider.key"
28
29
-if [ ! -f "$masterKey" -o ! -f "$providerKey" ]; then
+if [ ! -s "$masterKey" ] || [ ! -s "$providerKey" ]; then
30
./akash key create master > "$masterKey"
31
echo "created account: " $(cat "$masterKey")
32
0 commit comments