fix(ci): fix dependency group name
The dependency group for documentation has been renamed to docs [1],
rename it to align with this change. This change in the CI scripts was
missed. In CI we are using Poetry 1.3.2 which elides over spelling
errors in the group name. However, in newer versions, incorrect group
names are treated as fatal errors by Poetry.
[1] https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/30344
Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
Change-Id: I16cdb1538433cf4fffba0ee76c5e72327e05e401
diff --git a/script/build_package.sh b/script/build_package.sh
index d91ef1d..e1643d0 100755
--- a/script/build_package.sh
+++ b/script/build_package.sh
@@ -1500,7 +1500,7 @@
fvp_tsram_size="$(get_tf_opt FVP_TRUSTED_SRAM_SIZE)"
fvp_tsram_size="${fvp_tsram_size:-256}"
- poetry -C "$tf_root" install --without doc
+ poetry -C "$tf_root" install --without docs
archive="$build_archive"
tf_build_root="$tf_root/build"