2022-12-28 21:38:10 -03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2022-12-28 22:52:14 -03:00
|
|
|
# Script to perform some basic operations to the code before committing.
|
2022-12-28 21:38:10 -03:00
|
|
|
|
2022-12-28 22:52:14 -03:00
|
|
|
# Adds file hashes to html script imports for cache busting purposes
|
|
|
|
sh .devtools/updatehashes.sh
|
2022-12-28 21:38:10 -03:00
|
|
|
|
2022-12-28 22:52:14 -03:00
|
|
|
# Adds file to current commit
|
|
|
|
git add --all
|