Skip to content

Commit

Permalink
fix(core): remove fatal: no path specified logs from daemon (#18117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli authored Jul 14, 2023
1 parent 4f9f04f commit b61373a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ function computeWorkspaceConfigHash(
* TODO(Cammisuli): remove after 16.4 - Rust watcher handles nested gitignores
*/
function filterUpdatedFiles(files: string[]) {
if (files.length === 0) {
return files;
}

try {
const quoted = files.map((f) => '"' + f + '"');
const ignored = execSync(`git check-ignore ${quoted.join(' ')}`, {
Expand Down

1 comment on commit b61373a

@vercel
Copy link

@vercel vercel bot commented on b61373a Jul 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx.dev
nx-dev-nrwl.vercel.app
nx-five.vercel.app

Please sign in to comment.