Skip to content

Commit 3cd59b9

Browse files
committed
Fix typo again and add more build logging
1 parent 9050ac1 commit 3cd59b9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/builder.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@ export IMPORT_DEBUG=1
66

77
# Install `import`
88
IMPORT_BIN="$IMPORT_CACHE/bin/import"
9+
echo "Installing \`import\` to \"$IMPORT_BIN\""
910
mkdir -p "$(dirname "$IMPORT_BIN")"
1011
curl -sfLS "https://import.pw" > "$IMPORT_BIN"
1112
chmod +x "$IMPORT_BIN"
13+
echo "Done installing \`import\`"
1214

1315
# Install static `curl` binary for production
14-
if [ "${VERCEL_REGION-}" != "dev1"; then
16+
if [ "${VERCEL_REGION-}" != "dev1" ]; then
1517
IMPORT_CURL="$IMPORT_CACHE/bin/curl"
18+
echo "Installing static \`curl\` binary to \"$IMPORT_CURL\""
1619
curl -sfLS "https://github.com/dtschan/curl-static/releases/download/v7.63.0/curl" > "$IMPORT_CURL"
1720
chmod +x "$IMPORT_CURL"
21+
echo "Done installing \`curl\`"
1822
fi
1923

2024
# For now only the entrypoint file is copied into the lambda

0 commit comments

Comments
 (0)