2022-12-28 18:38:10 -06:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2022-12-28 19:52:14 -06:00
|
|
|
# Script to perform some basic operations to the code before committing.
|
2022-12-28 18:38:10 -06:00
|
|
|
|
2022-12-28 19:52:14 -06:00
|
|
|
# Adds file hashes to html script imports for cache busting purposes
|
2022-12-30 04:44:10 -06:00
|
|
|
sh .devtools/updatehashes.sh gitadd
|
2022-12-28 18:38:10 -06:00
|
|
|
|
2022-12-28 19:52:14 -06:00
|
|
|
# Adds file to current commit
|
2022-12-30 04:27:26 -06:00
|
|
|
git add "**.html"
|