From 33bcc9436a8a1fece2dfca449ac20c8ac6cddd69 Mon Sep 17 00:00:00 2001 From: qi <612912+qijianjun@users.noreply.github.com> Date: Wed, 24 Feb 2021 16:12:30 +0800 Subject: [PATCH] [skip ci]fix travis auth --- .travis.yml | 3 ++- Makefile | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97ccc86..e9e9b8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +#if: tag IS present dist: xenial language: minimal sudo: required @@ -21,7 +22,7 @@ deploy: skip_cleanup: true overwrite: true file_glob: true - file: output/*.sha + file: output/*.xz on: repo: qijianjun/build-beikeyun tags: true diff --git a/Makefile b/Makefile index 3317f5f..aad34f2 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ endif ARMBIAN_PKG_%: @( if [ ! -f "$(DL)/$($(@))" ]; then \ -# $(WGET) $(ARMBIAN_URL_BASE)/$($(@)) ; \ + $(WGET) $(ARMBIAN_URL_BASE)/$($(@)) ; \ $(WGET) $(ARMBIAN_URL_BASE)/$($(@)).sha ; \ fi ) @@ -44,8 +44,7 @@ ARMBIAN_TARGETS := ARMBIAN_PKG_UBUNTU ARMBIAN_PKG_UBUNTU_LEGACY ARMBIAN_PKG_DEBI armbian: $(ARMBIAN_TARGETS) ( for pkg in $(foreach n,$^,$($(n))); do \ -# sudo ./build-armbian.sh release $(DL)/$$pkg $(DTB_HEADLESS) ; \ - echo $$pkg ; \ + sudo ./build-armbian.sh release $(DL)/$$pkg $(DTB_HEADLESS) ; \ done ) armbian_clean: $(ARMBIAN_TARGETS:%=%_CLEAN)