Utilize shards' executables

There's no need for copying the executables manually (which happens in both makefile targets `bin` and `run_file`).
Shards' `executables` takes care of that.

The makefile targets could potentially be dropped as well, I don't think there would be other uses case for those.
This commit is contained in:
Johannes Müller 2023-07-15 10:07:15 +02:00
parent 5cff76071a
commit eacb9308a7
No known key found for this signature in database
GPG key ID: F0F349637AC5087A

View file

@ -10,10 +10,11 @@ targets:
scripts:
# TODO: remove pre-compiled executable in future releases
postinstall: make bin && make run_file
postinstall: make build
executables:
- ameba
- ameba.cr
crystal: "~> 1.7.0"