Add pyopenapi fork to the repository, update RFC assets

This commit is contained in:
Ashwin Bharambe 2024-09-03 21:22:30 -07:00
parent 0d619b9f8e
commit b60c125c55
12 changed files with 2240 additions and 452 deletions

View file

@ -1,6 +1,5 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
@ -14,12 +13,11 @@ set -euo pipefail
missing_packages=()
check_package() {
if ! pip show "$1" &> /dev/null; then
if ! pip show "$1" &>/dev/null; then
missing_packages+=("$1")
fi
}
check_package python-openapi
check_package json-strong-typing
if [ ${#missing_packages[@]} -ne 0 ]; then