GPG verification for all platform repositories

Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2022-08-26 22:00:59 -04:00
parent 7854c05aa4
commit 3618774d9f
No known key found for this signature in database
GPG key ID: B286E9F57A07424B
10 changed files with 71 additions and 37 deletions

View file

@ -21,6 +21,17 @@ startPatcher() {
}
export -f startPatcher;
resetWorkspace() {
umask 0022;
repo forall -c 'git add -A && git reset --hard' && rm -rf out DOS_PATCHED_FLAG && repo sync -j8 --force-sync --detach;
}
export -f resetWorkspace;
verifyAllTags() {
repo forall -c 'source $DOS_WORKSPACE_ROOT/Scripts/Common/Tag_Verifier.sh && verifyTagIfPossible $REPO_PROJECT $REPO_PATH';
}
export -f verifyAllTags;
enter() {
echo "================================================================================================"
local dir="$1";