Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit 38de4a4

Browse files
Merge pull request #1 from code-check/develop
Use * in build command
2 parents e07ddc3 + fc305f4 commit 38de4a4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

cli-template.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
build:
2-
- c++ -o myapp.o src/app.cpp
2+
- c++ -o myapp.o src/*.cpp
33
files:
44
- .gitignore
55
- src/app.cpp
6+
main: src/app.cpp
67
command: ./myapp.o

codecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
build:
2-
- c++ -o myapp.o src/app.cpp
2+
- c++ -o myapp.o src/*.cpp
33
env:
44
APP_COMMAND: ./myapp.o
55
test: mocha

0 commit comments

Comments
 (0)