diff options
author | Robin Jarry <robin@jarry.cc> | 2023-08-16 15:45:11 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-08-24 14:14:45 +0200 |
commit | 79fd950f93c1804f3e6bd2b0d88c19bbe70a61b4 (patch) | |
tree | bb1c8ed2a672d52a91b88ceed9fcd207dd0cff06 /.builds/openbsd.yml | |
parent | fd0d9dd8dbd1f2ed3aa5a9dda6c3f4c18eccb3ac (diff) | |
download | aerc-79fd950f93c1804f3e6bd2b0d88c19bbe70a61b4.tar.gz |
ci: use make -C instead of changing directories
This is a matter of preference. I prefer -C over changing dirs.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Karel Balej <balejk@matfyz.cz>
Diffstat (limited to '.builds/openbsd.yml')
-rw-r--r-- | .builds/openbsd.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index b83670bb..46be4f16 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -12,9 +12,6 @@ environment: DESTDIR: ./out tasks: - build: | - cd aerc - gmake + gmake -C aerc - install: | - cd aerc - gmake install - gmake checkinstall + gmake -C aerc install checkinstall |