1

I am working on a laravel project and literally, after any command in the git bash file explorer randomly opens few times.

If I run npm run dev, npm install, PHP artisan something...

enter image description here

Here is the package.json:

enter image description here

Sead Silajdzic
  • 298
  • 1
  • 4
  • 21

1 Answers1

1

What do you mean by PATH? How to check that?

If you are on Windows:

  • open a CMD
  • type set PATH
  • type where find

And error like find: /I no such file or directory looks like a Linux find used where a Windows find.exe (using such options as /I) is expected.

If where find returns two path entries, the order of those paths would be important.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Interestingly enough I cant even open cmd now ... it just closes it automatically – Sead Silajdzic Apr 21 '21 at 14:22
  • @SeadSilajdzic Whut? Wrong `AutoRun` entry in the registry, as seen in https://www.youtube.com/watch?v=fL9oElitx6I? – VonC Apr 21 '21 at 15:14
  • @SeadSilajdzic Or worse... https://stackoverflow.com/q/5373137/6309. But on AutoRun, see also https://www.youtube.com/watch?v=tZiQ4bPgwVk or https://www.youtube.com/watch?v=lpuACtGl5q8 – VonC Apr 21 '21 at 15:50