Update apply-single-patch.sh

This commit is contained in:
uazo 2022-01-14 14:37:31 +01:00 committed by GitHub
parent 9d611cc535
commit 53605d6156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ if [[ OK -eq 0 ]]; then
done
for file in $(find . -name *.rej); do
echo "---Found: $file" | tee -a ${LOG_FILE};
echo " Found: $file" | tee -a ${LOG_FILE};
git add ${file::-4}
OK=0
done
@ -42,7 +42,10 @@ if [[ OK -eq 0 ]]; then
if [[ OK -eq 0 ]]; then
DOBUILD=1
echo "Current patch $PATCH" | tee -a ${LOG_FILE}
echo "Patch not apply cleanly. Please fix... (next phase: build)" | tee -a ${LOG_FILE}
echo " Patch not apply cleanly. Please fix..." | tee -a ${LOG_FILE}
if [ -n "$SILENT" ]; then
exit 1
fi
echo " Press return"
read -n 1
else
@ -65,21 +68,21 @@ if [[ DOBUILD -eq 1 ]]; then
#autoninja -C out/arm64 chrome_public_apk && OK=1
#date "+%Y%m%d %H.%M.%S" | tee -a ${LOG_FILE}
#DOEXPORT=1
DOEXPORT=1
fi
if [[ OK -eq 0 ]]; then
if [ -z "$SILENT" ]; then
echo "Read to add $PATCH. Press return"
read -n 1
DOEXPORT=1
fi
fi
if [[ DOEXPORT -eq 1 ]]; then
until false
do
bash ~/bromite-buildtools/create-from-patch.sh $PATCH $2
bash ~/bromite-buildtools/create-from-patch.sh $PATCH $2 || exit 1
rm /tmp/1 /tmp/2 || true
lsdiff $PATCH >/tmp/1
@ -89,9 +92,13 @@ if [[ DOEXPORT -eq 1 ]]; then
git reset HEAD^
diff /tmp/1 /tmp/2
echo "Some files are missing. Check again." | tee -a ${LOG_FILE}
if [ -n "$SILENT" ]; then
exit 1
fi
read -r -p "y to continue [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]]; then
bash ~/bromite-buildtools/create-from-patch.sh $PATCH $2
bash ~/bromite-buildtools/create-from-patch.sh $PATCH $2 || exit 1
break
fi
bash