Problems with Windows 10 Native execution

Hi,

I'm trying to set up gitlabci-local to manually trigger local builds on Windows. The benefit over gitlab-runner is, that your tool als handles uncommited changes - great job and thanks for sharing :)

Unfortunately, running a job on Windows always gives me:

 ===[ build: build-example:win (local, native) ]===

Der Befehl "sh" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

So it seems like the tool tries to run a "sh" command on Windows which obviously fails.

I tried to set the entrypoint to cmd.exe

image: 
  name: local
  entrypoint: cmd.exe

Then the error just changes to:

===[ build: build-example:win (local, native) ]===

Der Befehl "c" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.

I also tried to put cmd.exe in quotes - same issue.

Can you tell me if this is a bug or just a configuration issue?

Thanks and best regards Simon