Closed spnkr closed 5 years ago
e.g. if this is your rakefile before running cdq init via the CLI:
cdq init
desc "..." task "some-task" do #.... end
it does this:
desc "..." task "some-task" do #... endtask :"build:simulator" => :"schema:build" task :"build:device" => :"schema:build"
but should do this
desc "..." task "some-task" do #... end task :"build:simulator" => :"schema:build" task :"build:device" => :"schema:build"
e.g. if this is your rakefile before running
cdq init
via the CLI:it does this:
but should do this