arturo-lang / arturo

Simple, expressive & portable programming language for efficient scripting
http://arturo-lang.io
MIT License
673 stars 29 forks source link

Install from source instructions don't work #1645

Closed ErikSchierboom closed 1 month ago

ErikSchierboom commented 1 month ago

Describe the bug I've tried to install from source but the install instructions don't work.

To Reproduce Steps to reproduce the behavior:

  1. Go to https://github.com/arturo-lang/arturo/wiki/Building-Arturo
  2. Follow the instructions
  3. Run ./build.nims install

Then see the build arguments overview being shown, not it being installed.

Expected behavior The binary is built and installed.

Desktop (please complete the following information):

Additional context By digging through the source code, turns out the right instruction is:

./build.nims build --install

RickBarretto commented 1 month ago

@ErikSchierboom , thanks for submitting this issue. Well, I didn't even know about this page, lol.

But this is clearly outdated, so thanks a lot. I'll update this as soon as possible.

Although, if you want to compile arturo locally, you can try this by yourself:

$ ./build.nims --log --install

As you mentioned.

RickBarretto commented 1 month ago

Annd, Wiki Updated!

@ErikSchierboom, can you tell me if running ./build.nims --install --mode mini works for you?

ErikSchierboom commented 1 month ago

Yes that works.