This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: ./add_maintainer_to_org_teams.sh [ORG NAME] [GITHUB HANDLE] | |
# Example: ./add_maintainer_to_org_teams.sh prusa3D pierrotsmnrd | |
# Ensure the script exits on error | |
set -e | |
# Check if DuckDB and gh CLI are installed | |
if ! command -v duckdb &>/dev/null; then | |
echo "Error: DuckDB is not installed. Install it first." >&2 |