mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 03:20:09 +01:00
ci/android: fix pulling results from Android device
Add a trailing dot to the remote directoyy in the `adb pull` command to make sure to recursively pull only the **content** of the directory and not the directory itself. This prevents having `results/results/` in the artifacts. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33261>
This commit is contained in:
parent
1c96335d01
commit
d0b00a63a7
1 changed files with 1 additions and 1 deletions
|
|
@ -207,7 +207,7 @@ EXIT_CODE=$?
|
|||
set -e
|
||||
section_switch cuttlefish_results "cuttlefish: gathering the results"
|
||||
|
||||
$ADB pull $AOSP_RESULTS $RESULTS_DIR
|
||||
$ADB pull "$AOSP_RESULTS/." "$RESULTS_DIR"
|
||||
|
||||
section_end cuttlefish_results
|
||||
exit $EXIT_CODE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue