Building from source, running into issue on the make command (Windows 10)

I am on windows 10 and I am attempting to build from source to start contributing to the project.
I was following along with the guide.
These are the version of the programs I have in path currently:

* Python 3.9.13
* Git 2.36.1
* GNU Make 3.81
* Poetry 1.7.1
* Node.js 20.9.0
* npm 10.1.0
* Rust 1.75.0
* Cargo 1.75.0

I am in powershell and here is the output:

PS C:\Users\L3> cd A:\.code\py\standalone\2024\activitywatch\activitywatch
PS A:\.code\py\standalone\2024\activitywatch\activitywatch> .\venv\Scripts\Activate.ps1
(venv) PS A:\.code\py\standalone\2024\activitywatch\activitywatch> make build
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
if [ -e "aw-core/.git" ]; then \
                echo "Submodules seem to already be initialized, continuing..."; \
        else \
                git submodule update --init --recursive; \
        fi
-e was unexpected at this time.
make: *** [build] Error 255

Downloaded make from the link the guide provided: make version

You need to use the bash shell (usually known as “git bash” on Windows as it’s included with git), Powershell is not supported.

The docs mention this briefly where it mentions how to activate the virtualenv, but I could probably make this clearer: “for Windows git bash…”

Trying to use git bash but not really sure how to continue. Was really hoping to contribute but feel like I am just wasting your guys time at the moment. Sorry.

You were so close! The last command source venv/Scripts/activate was correct, you just forgot a " at the end.

Oh wow, ya was so close. Got the build working but getting the same message I got when I tried to manually build all the components myself. I don’t mind deleting the folder and trying to re-build fresh (I ran out of space on the first build and had to run again) but maybe the issue about no aw-server and missing watcher’s has some easy fix?
Thanks for the help btw!

The tray icon shows up btw, just have no page at: http://localhost:5666/
Also have the regular Activity Watch running at the same time but it seems that’s not an issue if I use the testing flag.