mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Prevent error when run file exists
This commit is contained in:
parent
a4eb4afbcc
commit
3f54786ec6
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -15,7 +15,7 @@ bin: build
|
||||||
mkdir -p $(SHARD_BIN)
|
mkdir -p $(SHARD_BIN)
|
||||||
cp ./bin/ameba $(SHARD_BIN)
|
cp ./bin/ameba $(SHARD_BIN)
|
||||||
run_file:
|
run_file:
|
||||||
cp -n ./bin/ameba.cr $(SHARD_BIN)
|
cp -n ./bin/ameba.cr $(SHARD_BIN) || true
|
||||||
test: build
|
test: build
|
||||||
$(CRYSTAL_BIN) spec
|
$(CRYSTAL_BIN) spec
|
||||||
./bin/ameba --all
|
./bin/ameba --all
|
||||||
|
|
Loading…
Reference in a new issue