mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-20 22:01:31 +00:00
Add post-build hook to compile.sh
This commit is contained in:
parent
c7b49e6667
commit
70c6ca547b
1 changed files with 5 additions and 1 deletions
|
@ -89,6 +89,10 @@ else
|
|||
source $SRC/lib/main.sh
|
||||
fi
|
||||
|
||||
# hook for function to run after build, i.e. to change owner of $SRC
|
||||
# NOTE: this will run only if there were no errors during build process
|
||||
[[ $(type -t run_after_build) == function ]] && run_after_build
|
||||
|
||||
# If you are committing new version of this file, increment VERSION
|
||||
# Only integers are supported
|
||||
# VERSION=20
|
||||
# VERSION=21
|
||||
|
|
Loading…
Add table
Reference in a new issue