Update export-all-patch.sh

This commit is contained in:
uazo 2022-03-24 16:58:45 +01:00 committed by GitHub
parent cfbb923b0d
commit a716f182be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,9 +37,11 @@ PATCH_LIST=~/bromite/build/bromite_patches_list.txt
mkdir ~/bromite/build/patches-new/changed
mkdir ~/bromite/build/patches-new/contrib
for current_file in $(cat $PATCH_LIST); do
if [[ $current_file =~ ^changed/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/changed
elif [[ $current_file =~ ^contrib/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/contrib
if [[ "$PATCH_FILE" == *".patch" ]]; then
if [[ $current_file =~ ^changed/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/changed
elif [[ $current_file =~ ^contrib/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/contrib
fi
fi
done