macalimlim / godot-rust-template

A template for godot-rust projects
MIT License
51 stars 22 forks source link

make run does not work on Mac #43

Closed svenallers closed 2 years ago

svenallers commented 2 years ago

make run does not work on Mac because the -b option is not supported. Executing the command result in:

mv -b ./target/x86_64-apple-darwin/debug/*.dylib ./lib/x86_64-apple-darwin
mv: illegal option -- b
usage: mv [-f | -i | -n] [-v] source target
       mv [-f | -i | -n] [-v] source ... directory

On: MacOS Monterey 12.0.1

macalimlim commented 2 years ago

@svenallers Have you installed coreutils? You can refer to the wiki

macalimlim commented 2 years ago

Closing this issue, the template is now using cargo-make instead of make, thus removing the dependency to gnu coreutils...