Skip to content

Instantly share code, notes, and snippets.

View luukdobber's full-sized avatar

Luuk Dobber luukdobber

View GitHub Profile
@luukdobber
luukdobber / core_integration_commit
Last active May 8, 2026 20:45 — forked from barchero/core_integration_commit
Install HA Core commit as custom component
#!/bin/bash
# curl -o- -L https://gist.githubusercontent.com/luukdobber/cb803f32c791b9c5fc4ee63a903be3da/raw/core_integration_commit | bash /dev/stdin -d domain -c 12345
while getopts d:c: flag
do
case "${flag}" in
d) domain="${OPTARG}";;
c) commit_hash="${OPTARG}";;
esac
done