From 07d1ff5f9bf6b7acd4e1d93870824f84effceb8e Mon Sep 17 00:00:00 2001 From: Kiel Christofferson Date: Tue, 18 Feb 2014 17:05:11 -0500 Subject: [PATCH] Include "components" when detecting local scripts. This can help facilitate development and testing during the python transition. --- frontend/cli/lb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/cli/lb b/frontend/cli/lb index 63e46a9e0..e2862cdcc 100755 --- a/frontend/cli/lb +++ b/frontend/cli/lb @@ -67,6 +67,10 @@ case "${1}" in then # User has live-build copied locally in the system SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}" + elif [ -x "${LIVE_BUILD}/components/${COMMAND}" ] + then + # User has live-build copied locally in the system + SCRIPT="${LIVE_BUILD}/components/${COMMAND}" elif [ -x "local/live-build/scripts/build/${COMMAND}" ] then # User has live-build copied locally in the config