From 3fed10ac18dae915c1affbdf2a2a25232d1fa6d7 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Mon, 27 May 2019 17:56:24 -0700 Subject: [PATCH] Fix bad variable reference --- .gitlab-ci.yml | 2 +- source/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 701c6bb..ae5e391 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,4 +18,4 @@ package: - debuild -us -uc artifacts: paths: - - nginx_${NGINX_VERSION} + - nginx_${NGINX_VERSION}*.deb diff --git a/source/Makefile b/source/Makefile index fe8dc50..dee87c2 100644 --- a/source/Makefile +++ b/source/Makefile @@ -1,6 +1,6 @@ # Relies on latest binary build artifact from https://git.ethitter.com/debian/nginx-build. get_binary: - curl -o fakeroot/usr/sbin/nginx $NGINX_BINARY + curl -o fakeroot/usr/sbin/nginx "${NGINX_BINARY}" install: get_binary install fakeroot/etc/default/nginx /etc/default/nginx -- GitLab