diff --git a/docs/docs/open-source.html b/docs/docs/open-source.html index 76283b5..67c3698 100644 --- a/docs/docs/open-source.html +++ b/docs/docs/open-source.html @@ -21,7 +21,7 @@

Open source

-

Last edited: 28 August 2023
Open on GitHub

+

Last edited: 31 August 2023
Open on GitHub

diji as well as it's website and docs are open source on the MIT license with all 3 being available in this GitHub repo with diji being located in the main branch while the website and docs are located in the github-files branch

The project is open to contributions (but don't do it for the sake of your sanity, the code is terrible)

You're also welcome to fork it and make your own version as long as you give credit to the original creator (well, partially original, most of the code comes from stackoverflow anyways)

@@ -43,7 +43,10 @@

List all of the possible targets ([platform]/[architecture]):

go tool dist list

Now select the target you want to build for and run this command, replacing [platform] with the os you want to build for and [architecture] with the architecture you want to build for:

-
GOOS=[platform] GOARCH=[architecture] go build . -o diji/diji
+
GOOS=[platform] GOARCH=[architecture] go build -o diji/diji
+

Or if you're building for Windows:

+
GOOS=[platform] GOARCH=[architecture] go build -o diji/diji.exe
+

Other platforms might require other formats. I'm only mentioning the ones that I know as I build them officially. If you have experienced needing to add a format while building for a platform other than Windows, feel free to contribute to the docs and share that info with everyone.