Scenario:
1- Downloaded Rust code from https://codeberg.org/flovanco/space-editor
2- Opened Folder if space-editor in VSCode
3- Opened terminal in VSCode and did: cargo build --release
Now instructions in the above URL say:
Run the binary:
space_editor --image "res/tile_set.png" --map "res/map.ron"
.....but when I execute the above line in the terminal I get:
space_editor: command not found
How do I make the space_editor binary in the /target/release/ folder able to be executed as 'space_editor --image "res/tile_set.png" --map "res/map.ron"'?