From: Etienne Champetier Date: Mon, 29 Oct 2018 00:18:01 +0000 (-0400) Subject: build,circleci: fixup pkgs list generation X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=cd315ec4e2ac3cc083a85ecf35a3e2c0c428321a;p=openwrt-packages.git build,circleci: fixup pkgs list generation Signed-off-by: Etienne Champetier --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 853a8c7a6..e15587c1e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,7 +43,7 @@ jobs: name: Download & check & compile working_directory: ~/build_dir command: | - PKGS=$(cd ~/openwrt_packages; git diff --diff-filter=d --name-only "origin/master" | grep 'Makefile$' | grep -v '/files/' | awk -F/ '{ print $(NF-1) }') + PKGS=$(cd ~/openwrt_packages; git diff --diff-filter=d --name-only "origin/master..." | grep 'Makefile$' | grep -v '/files/' | awk -F/ '{ print $(NF-1) }') echo "Packages: $PKGS" for PKG in $PKGS ; do make "package/$PKG/download" V=s