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've recently run in to a problem whereby I'm trying to copy the contents of two directories to the same target directory (in this case, FontAwesome and Glyphicon font files in to web/fonts)
Running this configuration resulted in the following (exceedingly helpful!) error message:
Failed to install vendor modules: undefined
After a lot of time spend debugging, it seems that vendor-copy cannot handle copying multiple directories into the same destination directory.
I could have specified each file individually, but this would have been really verbose and bloated my package.json.
My solution in the end has been to deploy one to web/fonts and the other to web/fonts2 and then use an additional command to move the contents of web/fonts2 into web/fonts
I've solved my problem for the moment, and am not sure if this is a bug or not, but hopefully for future Google searches this will help someone as it's cost me a few hours of pulling my hair out!
The text was updated successfully, but these errors were encountered:
I've recently run in to a problem whereby I'm trying to copy the contents of two directories to the same target directory (in this case, FontAwesome and Glyphicon font files in to
web/fonts
)Running this configuration resulted in the following (exceedingly helpful!) error message:
Failed to install vendor modules: undefined
After a lot of time spend debugging, it seems that
vendor-copy
cannot handle copying multiple directories into the same destination directory.I could have specified each file individually, but this would have been really verbose and bloated my package.json.
My solution in the end has been to deploy one to
web/fonts
and the other toweb/fonts2
and then use an additional command to move the contents ofweb/fonts2
intoweb/fonts
I've solved my problem for the moment, and am not sure if this is a bug or not, but hopefully for future Google searches this will help someone as it's cost me a few hours of pulling my hair out!
The text was updated successfully, but these errors were encountered: