Disabling a single component will support both patterns
The old pattern with just the name (node.plugin.bash) and the new one with the load priority (250---node.plugin.bash).
This commit is contained in:
@@ -240,7 +240,11 @@ _disable-thing ()
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
typeset plugin=$(command ls $BASH_IT/$subdirectory/enabled/$file_entity.*bash 2>/dev/null | head -1)
|
# Use a glob to search for both possible patterns
|
||||||
|
# 250---node.plugin.bash
|
||||||
|
# node.plugin.bash
|
||||||
|
# Either one will be matched by this glob
|
||||||
|
typeset plugin=$(command ls $BASH_IT/$subdirectory/enabled/{[0-9]*$BASH_IT_LOAD_PRIORITY_SEPARATOR$file_entity.*bash,$file_entity.*bash} 2>/dev/null | head -1)
|
||||||
if [ -z "$plugin" ]; then
|
if [ -z "$plugin" ]; then
|
||||||
printf '%s\n' "sorry, $file_entity does not appear to be an enabled $file_type."
|
printf '%s\n' "sorry, $file_entity does not appear to be an enabled $file_type."
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user