소스 검색

fix ci check "compile all bins"

ghassmo 4 년 전
부모
커밋
e85a29a05c
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      script/compile_all_bins.sh

+ 3 - 2
script/compile_all_bins.sh

@@ -1,3 +1,4 @@
 #!/bin/sh
-bins="$(find bin -maxdepth 1 | tail -n+2 | sed 's,bin/,,' | tr '\n' ' ')"
-make BINS="$bins"
+bins="$(find bin -maxdepth 1 | tail -n+2 | sed 's,bin/,,' | tr '\n' ' ' |  sed 's,tau,,')"
+bins_tau="$(find bin/tau -maxdepth 1 | sed 's,bin/tau/,,' | grep -w 'taud\|tau-cli' | tr '\n' ' ')"
+make BINS="$bins_tau $bins"