You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suspect that the reason that provisioning doesn't work unless you provision everything is because shyaml returns True or False for boolean values, but the provisioner checks for false:
if [[ `wme_provision_site "${SITE_DOMAIN}"`=='false' ]];thenecho"Provisioning of ${SITE_DOMAIN} skipped"returnfi
I would also keep in mind that searching in subfolders for provisioners is slower, and the goal of the VVV project longterm is to deprecate such behaviour.
A provision/vvv-init.sh or a .vvv/vvv-init.sh that calls these other provisioners would greatly improve provisioning speed, and future proof things. VVV searches 3 folders deep at the moment, but if either of those folders/files exist, it will load them and skip the file system search, which can be particularly slow on older computers
The text was updated successfully, but these errors were encountered:
I suspect that the reason that provisioning doesn't work unless you provision everything is because
shyaml
returnsTrue
orFalse
for boolean values, but the provisioner checks forfalse
:I would also keep in mind that searching in subfolders for provisioners is slower, and the goal of the VVV project longterm is to deprecate such behaviour.
A
provision/vvv-init.sh
or a.vvv/vvv-init.sh
that calls these other provisioners would greatly improve provisioning speed, and future proof things. VVV searches 3 folders deep at the moment, but if either of those folders/files exist, it will load them and skip the file system search, which can be particularly slow on older computersThe text was updated successfully, but these errors were encountered: