Include "components" when detecting local scripts.
This can help facilitate development and testing during the python transition.
This commit is contained in:
parent
c8daf8fcfd
commit
07d1ff5f9b
|
@ -67,6 +67,10 @@ case "${1}" in
|
||||||
then
|
then
|
||||||
# User has live-build copied locally in the system
|
# User has live-build copied locally in the system
|
||||||
SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}"
|
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}" ]
|
elif [ -x "local/live-build/scripts/build/${COMMAND}" ]
|
||||||
then
|
then
|
||||||
# User has live-build copied locally in the config
|
# User has live-build copied locally in the config
|
||||||
|
|
Loading…
Reference in New Issue