diff options
author | terminaldweller <thabogre@gmail.com> | 2021-07-14 05:16:40 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-07-14 05:16:40 +0000 |
commit | b0d93359ec6d53a3426a33e26f7342d03d6102e0 (patch) | |
tree | 7ebc592fd6f07f15192a9920ee3f976ccd9e4221 /.travis.yml | |
parent | removed llvm 5 and 6 since they are no longer included in the PPA. fix for ll... (diff) | |
download | cgrep-b0d93359ec6d53a3426a33e26f7342d03d6102e0.tar.gz cgrep-b0d93359ec6d53a3426a33e26f7342d03d6102e0.zip |
fixed a typo in travis.yaml. cant type for the life of me
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 1ec9314..afb7910 100644 --- a/.travis.yml +++ b/.travis.yml @@ -166,7 +166,7 @@ matrix: - git submodule init
- git submodule update
script:
- - make CXX-clang-12 LLVM_CONF=llvm-config-12
+ - make CXX=clang-12 LLVM_CONF=llvm-config-12
- dist: bionic
name: llvm13
sudo: required
@@ -181,4 +181,4 @@ matrix: - git submodule init
- git submodule update
script:
- - make CXX-clang-13 LLVM_CONF=llvm-config-13
+ - make CXX=clang-13 LLVM_CONF=llvm-config-13
|