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
Unfortunately, when two scripts run at the same time with the same filename due to Date.now(), NPM will error. Instead, files should be named uniquely. In the NPM cli, this implementation avoids the error:
Is there an existing issue for this?
Current Behavior
When running NPM scripts concurrently, some will fail with errors like:
/tmp/ *** .sh: Text file busy
Error: ETXTBSY: text file is busy, open '/tmp/ *** .sh'
Expected Behavior
NPM scripts run as expected when run concurrently by using unique filenames.
The current implementation is:
Unfortunately, when two scripts run at the same time with the same filename due to
Date.now()
, NPM will error. Instead, files should be named uniquely. In the NPM cli, this implementation avoids the error:Steps To Reproduce
Environment
The text was updated successfully, but these errors were encountered: