0

This is what I did:

  1. Shift + Right Click in the forge folder
  2. Clicked "open command window here"
  3. Typed in "gradlew setupDecompWorkspace eclipse"
  4. Once it's done there's an error message that says:

    you are running the setupDecompWorkspace task and an IDE/build task in the same command. Do them separately."

What should I do?
Unihedron
  • 10,902
  • 13
  • 62
  • 72
lllendexll
  • 81
  • 1
  • 1
  • 3

1 Answers1

0

You need to run two seperate commands instead of both at the same time. You need to run:

gradlew setupDecompWorkspace

and you then:

gradlew eclipse
gvlasov
  • 18,638
  • 21
  • 74
  • 110
Aiden Grossman
  • 337
  • 5
  • 13