0

When I am trying to type init --env=Development --overwrite=n in command line on Linux

I have an error bash: --env=Development: command not found

Blizz
  • 8,082
  • 2
  • 33
  • 53
John
  • 45
  • 1
  • 1
  • 5

1 Answers1

1

On linux, for security purposes, you have to refer to the current directory specifically.

You will have to use

./init --env=Development --overwrite=n

Also take a look here for a more extensive explanation.

Community
  • 1
  • 1
Blizz
  • 8,082
  • 2
  • 33
  • 53