Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 043424db authored by Paul Duffin's avatar Paul Duffin Committed by android-build-merger
Browse files

Merge "Fix issue with sort_api.sh" am: f943c521 am: 66e9d986

am: 1a73c07a

Change-Id: I214977be62710e359839acd25fda1b22d7f043f8
parents ef3026c1 1a73c07a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,6 @@ A=( $(uniq <<< "${A[*]}") )
A=( ${C[*]} ${A[*]} )
unset IFS
# Dump array back into the file
if [ ${#A[@]} -neq 0 ]; then
if [ ${#A[@]} -ne 0 ]; then
  printf '%s\n' "${A[@]}" > "$dest_list"
fi