xyproto / orbiton

Configuration-free text editor and IDE limited to VT100. Suitable for writing git commit messages, editing Markdown, config files, source code, man pages and for quick edit-format-compile cycles when programming. Has syntax highlighting, jump-to-error, rainbow parentheses, macros, llm tab completion, cut/paste portals and a simple gdb front-end.
https://roboticoverlords.org/orbiton
BSD 3-Clause "New" or "Revised" License
501 stars 15 forks source link

Update installation instructions #10

Closed emanuele6 closed 2 years ago

emanuele6 commented 2 years ago

go build -mod=vendor does not work:

bash-5.1$ go build -mod=vendor
go: cannot find main module, but found .git/config in /home/emanuele6/.source_code/o
        to create a module there, run:
        go mod init

Using make to build the program works.

make will run the following command:

cd v2 && go build -mod=vendor -v -o ../o
xyproto commented 2 years ago

Merged, thanks!