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
On a clean install of pushkin, attempting to run pushkin install site I get this kind of error:
I think this is fixable by just running the command again, but I suspect the root cause of this is that pushkin-cli is trying to run multiple parallel instances of yarn when it builds the api and front-end as async events.
Before I make a PR on this, I just wanted to see if I'm missing anything. Clearly there was some deliberate choice to make all of the fs operations async in this part of the code, so I'm wondering if there's a reason to not await the completion of each of those before moving on to the next.
On a clean install of pushkin, attempting to run
pushkin install siteI get this kind of error:I think this is fixable by just running the command again, but I suspect the root cause of this is that
pushkin-cliis trying to run multiple parallel instances ofyarnwhen it builds the api and front-end asasyncevents.pushkin-cli/src/commands/sites/index.js
Lines 159 to 160 in d0c3750
Before I make a PR on this, I just wanted to see if I'm missing anything. Clearly there was some deliberate choice to make all of the
fsoperations async in this part of the code, so I'm wondering if there's a reason to notawaitthe completion of each of those before moving on to the next.