Skip to content

Instantly share code, notes, and snippets.

View oscahie's full-sized avatar

Oscar Hierro oscahie

View GitHub Profile
@oscahie
oscahie / core_integration_pr
Created March 23, 2025 23:24 — forked from bdraco/core_integration_pr
Install HA Core PR as custom component
#!/bin/bash
# curl -o- -L https://gist.githubusercontent.com/bdraco/43f8043cb04b9838383fd71353e99b18/raw/core_integration_pr | bash /dev/stdin -d domain -p 12345
while getopts d:p: flag
do
case "${flag}" in
d) domain="${OPTARG}";;
p) pull_request="${OPTARG}";;
esac
done