personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Makefile: propagate install_parakeet_model.py failures from install

The post-install hook for parakeet was running install_parakeet_model.py
without || exit 1, which silently swallowed failures.

Default-flip lode mwyt5l3e hardened sibling steps in the parakeet-prep
block, but this post-install step was missed.

Wrap it with
|| { echo "parakeet install: install_parakeet_model.py failed" >&2; exit 1; }
to match the existing recipe style.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
Makefile
··· 99 99 @OS_NAME=$$(uname -s); \ 100 100 ARCH=$$(uname -m); \ 101 101 if [ "$$OS_NAME" = "Darwin" ] && [ "$$ARCH" = "arm64" ] || [ "$$OS_NAME" = "Linux" ] && [ "$$ARCH" = "x86_64" ]; then \ 102 - PARAKEET_ONNX_VARIANT=$(PARAKEET_ONNX_VARIANT) $(VENV_PY) scripts/install_parakeet_model.py; \ 102 + PARAKEET_ONNX_VARIANT=$(PARAKEET_ONNX_VARIANT) $(VENV_PY) scripts/install_parakeet_model.py || { echo "parakeet install: install_parakeet_model.py failed" >&2; exit 1; }; \ 103 103 fi 104 104 105 105 # Directories where AI coding agents look for skills