Skip to content

Commit af9a8bf

Browse files
committed
chore: improve output messages in build and configuration scripts
- Updated the terminology in `build-docker.sh` to refer to the "setup image" instead of "setup container" for clarity. - Enhanced the output message in `configure-environment.sh` to specify that the fetched configuration includes both protocol state and data market details, improving user understanding.
1 parent f50a544 commit af9a8bf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

β€Žbuild-docker.shβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ docker build -t snapshotter-lite-v2 .
22

33
#!/bin/bash
44

5-
# Build the setup container
6-
echo "πŸ—οΈ Building snapshotter-lite-setup container..."
5+
# Build the setup image
6+
echo "πŸ—οΈ Building snapshotter-lite-setup image..."
77
docker build -f Dockerfile.setup -t snapshotter-lite-setup:latest .
88

99
if [ $? -eq 0 ]; then
10-
echo "βœ… Setup container built successfully"
10+
echo "βœ… Setup image built successfully"
1111
else
12-
echo "❌ Failed to build setup container"
12+
echo "❌ Failed to build setup image"
1313
exit 1
1414
fi

β€Žconfigure-environment.shβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ extract_chain_config() {
201201

202202
# Function to fetch markets configuration from GitHub
203203
fetch_markets_config() {
204-
echo "🌐 Fetching latest configuration from GitHub..."
204+
echo "🌐 Fetching latest protocol state and data market configuration from GitHub..."
205205

206206
# Try to fetch the configuration with timeout
207207
if command -v curl >/dev/null 2>&1; then
@@ -227,7 +227,7 @@ fetch_markets_config() {
227227
fi
228228
fi
229229

230-
echo "βœ… Successfully fetched configuration from GitHub."
230+
echo "βœ… Successfully fetched protocol state and data market configurations from Powerloom's curated data markets GitHub repository."
231231
return 0
232232
}
233233

0 commit comments

Comments
Β (0)