1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/script/new-versioning/main
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

33 lines
461 B
Bash
Executable File

#!/usr/bin/env bash
# [start-readme]
#
# All the new versioning!
#
# Usage
# $ script/new-versioning/main
#
# [end-readme]
base="script/new-versioning/"
scripts=(
"move-admin-dir.js"
"update-frontmatter.js"
"update-content.js"
"update-products-yml.js"
)
for script in "${scripts[@]}"
do
fullPath="${base}${script}"
printf "\n"
echo "$script"
"${fullPath}"
echo "${script} is done!"
printf "\n\n"
done
echo "done with all scripts!"