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