0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-04 02:01:58 -05:00

Updated suggested fix when yarn dev fails

- `yarn fix` is much more likely to fix dependency problems because it
  clears the cache and re-runs `yarn`
This commit is contained in:
Daniel Lockyer 2022-12-12 17:22:21 +07:00
parent bd92b3ac89
commit 7f8f5205e2
No known key found for this signature in database

2
.github/dev.js vendored
View file

@ -88,6 +88,6 @@ if (DASH_DASH_ARGS.includes('portal')) {
try {
await result;
} catch (err) {
console.error('Executing dev command failed, ensure dependencies are up-to-date by running `yarn`');
console.error('\nExecuting dev command failed, ensure dependencies are up-to-date by running `yarn fix`\n');
}
})();