summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlbonn <lbonn@users.noreply.github.com>2019-07-18 16:56:37 +0200
committerGitHub <noreply@github.com>2019-07-18 16:56:37 +0200
commitd4409182d2f31992fd8a26a5bcef8c99832b8089 (patch)
tree63e7be933e656cfa3a04d5431eb15d73d5bd9142
parentcb194eef86a50796d1a43c944324ca0ad5b94ab0 (diff)
parent404f1c929cb838af7bd32661d2da7edecd607243 (diff)
downloadmeta-updater-d4409182d2f31992fd8a26a5bcef8c99832b8089.tar.gz
Merge pull request #551 from advancedtelematic/ci/pin-fix
Fix PIN_LIST in checkout-oe.sh
-rwxr-xr-xscripts/ci/checkout-oe.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ci/checkout-oe.sh b/scripts/ci/checkout-oe.sh
index a99f235..523d71c 100755
--- a/scripts/ci/checkout-oe.sh
+++ b/scripts/ci/checkout-oe.sh
@@ -45,6 +45,7 @@ for pin in $PIN_LIST; do
45 IFS=":" 45 IFS=":"
46 read -r project rev <<< "$pin" 46 read -r project rev <<< "$pin"
47 xmlstarlet ed --omit-decl -L \ 47 xmlstarlet ed --omit-decl -L \
48 -d "/manifest/project[@name=\"$project\"]/@revision" \
48 -i "/manifest/project[@name=\"$project\"]/@revision" -t attr -n "revision" -v "$rev" \ 49 -i "/manifest/project[@name=\"$project\"]/@revision" -t attr -n "revision" -v "$rev" \
49 -i "/manifest/project[@name=\"$project\"]" -t attr -n "revision" -v "$rev" \ 50 -i "/manifest/project[@name=\"$project\"]" -t attr -n "revision" -v "$rev" \
50 "$MANIFEST_FILE" 51 "$MANIFEST_FILE"