Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein authored Oct 6, 2023
1 parent 08e7d91 commit 325e3f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ APP_PATH="/home/celestia/.celestia-app"
NODE_PATH="/home/celestia/bridge/"

# Check if the folder exists
echo "🔍 Checking if the folder $APP_PATH exists..."
echo "Checking if the folder $APP_PATH exists..."
if [ -d "$APP_PATH" ]; then
# If it exists, delete it
echo "👀 The folder $APP_PATH exists. Deleting it..."
echo "The folder $APP_PATH exists. Deleting it..."
rm -rf "$APP_PATH"
echo "👍 Folder deleted."
echo "Folder deleted."
else
# If it doesn't exist, print a message
echo "👍 The folder $APP_PATH does not exist."
echo "The folder $APP_PATH does not exist."
fi

# Build genesis file incl account for passed address
Expand Down

0 comments on commit 325e3f7

Please sign in to comment.