mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-06-30 23:12:45 +00:00
aosp: continue on error
This commit is contained in:
parent
3194c6653e
commit
50e7484fd5
4
aosp.sh
4
aosp.sh
@ -22,7 +22,9 @@ function repo_sync() {
|
|||||||
$REPO sync -f -j1
|
$REPO sync -f -j1
|
||||||
repo_sync_rc=$?
|
repo_sync_rc=$?
|
||||||
set -e
|
set -e
|
||||||
[[ "$repo_sync_rc" -ne 0 ]] && echo "WARNING: repo-sync may fail, but we just ignore it."
|
if [[ "$repo_sync_rc" -ne 0 ]]; then
|
||||||
|
echo "WARNING: repo-sync may fail, but we just ignore it."
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function git_repack() {
|
function git_repack() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user