Skip to content

Commit 70b60ec

Browse files
authored
Merge pull request #398 from ManuelLR/fix/prepare-ha-2025_11
Prepare HomeAssistant 2025.11 release
2 parents d9a4f2d + ef015ef commit 70b60ec

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/actions/home-assistant/action.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ runs:
1212
image: '../../../home_automation/home_assistant/Dockerfile'
1313
args:
1414
- /usr/local/bin/hass
15-
- -c=home_automation/home_assistant/config/
15+
- --config=home_automation/home_assistant/config/
1616
- --script
1717
## Must be in that way, if not, info=all fail
1818
- check_config
19+
- --config=home_automation/home_assistant/config/
1920
- --info=all
2021
# ${{ inputs.my_command }}

home_automation/home_assistant/prepare.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fi
1717
echo "Starting checking HomeAssistant..."
1818

1919
set +e
20-
/usr/local/bin/hass -c ${CONFIG_PREFIX_PATH}/ --script check_config --info=all > /tmp/firstCheckConfig.log 2>&1
20+
/usr/local/bin/hass --config ${CONFIG_PREFIX_PATH}/ --script check_config --config=${CONFIG_PREFIX_PATH}/ --info=all > /tmp/firstCheckConfig.log 2>&1
2121
firstCheckConfigStatus=$?
2222
set -e
2323

@@ -31,4 +31,4 @@ if [ $firstCheckConfigStatus -ne 0 ]; then
3131
# exit $firstCheckConfigStatus
3232
fi
3333

34-
/usr/local/bin/hass -c ${CONFIG_PREFIX_PATH}/ --script check_config --info=all
34+
/usr/local/bin/hass --config ${CONFIG_PREFIX_PATH}/ --script check_config --config=${CONFIG_PREFIX_PATH}/ --info=all

0 commit comments

Comments
 (0)