Skip to content

Commit

Permalink
Merge pull request #6690 from filecoin-project/fix-gate-dollar
Browse files Browse the repository at this point in the history
add dollar sign
  • Loading branch information
magik6k authored Jul 6, 2021
2 parents 251214d + f268068 commit 88c578b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/packer/scripts/butterflynet/lotus-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GATE="$LOTUS_PATH"/date_initialized

# Don't init if already initialized.
if [ -f "GATE" ]; then
if [ -f "$GATE" ]; then
echo lotus already initialized.
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion tools/packer/scripts/calibrationnet/lotus-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GATE="$LOTUS_PATH"/date_initialized

# Don't init if already initialized.
if [ -f "GATE" ]; then
if [ -f "$GATE" ]; then
echo lotus already initialized.
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion tools/packer/scripts/mainnet/lotus-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GATE="$LOTUS_PATH"/date_initialized

# Don't init if already initialized.
if [ -f "GATE" ]; then
if [ -f "$GATE" ]; then
echo lotus already initialized.
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion tools/packer/scripts/nerpanet/lotus-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GATE="$LOTUS_PATH"/date_initialized

# Don't init if already initialized.
if [ -f "GATE" ]; then
if [ -f "$GATE" ]; then
echo lotus already initialized.
exit 0
fi
Expand Down

0 comments on commit 88c578b

Please sign in to comment.