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 f6ee95b commit e10b34dCopy full SHA for e10b34d
src/build_map.sh
@@ -37,7 +37,7 @@ find deploy -mindepth 1 -print | while read -r path; do
37
if [ "$FILE_ID" -eq 1 ]; then
38
echo "┌ $relative_path"
39
elif [ "$FILE_ID" -eq "$TOTAL_FILES" ]; then
40
- echo "└ $relative_path"
+ echo -e "└ $relative_path\n"
41
else
42
echo "├ $relative_path"
43
fi
@@ -58,3 +58,5 @@ find deploy -mindepth 1 -print | while read -r path; do
58
59
FILE_ID=$((FILE_ID + 1))
60
done
61
+echo -e "End Build Map\n"
62
+echo -e "----------------\n"
0 commit comments