Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
33 lines
461 B
Bash
Executable File
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!"
|