-2

I'm trying to run a file on my Windows 10 Pro and this file when I run should build the ui of a code of a website, but when I type in './ui/build' it only shows this error,

'.' is not recognized as an internal or external command,
operable program or batch file.

I tried '.\ui\build' instead of './ui/build', but that to resulted in the same error,

'.\ui\build' is not recognized as an internal or external command,
operable program or batch file.

I'm not sure how I'm supposed to run a file so that it builds in my terminal.

  • In general that would work (with or without the leading dot-backlsash). Are you sure that the current (working) directory has a subdirectory `ui` with a file `build`(.cmd) in there? Also, what is the value of PATHEXT (do `echo %PATHEXT%` )? – Christian.K Oct 20 '21 at 08:20
  • You seem not to try to run a file but a directory… – aschipfl Oct 20 '21 at 14:11

1 Answers1

0

Unlike Linux, the Windows command line does look in the current directory by default, so you don't need a dot at all. Have you tried ui\build?

polo-language
  • 764
  • 4
  • 13