diff options
author | James Laska <jlaska@ansible.com> | 2015-09-09 16:57:55 +0200 |
---|---|---|
committer | James Laska <jlaska@ansible.com> | 2015-09-09 16:57:55 +0200 |
commit | 99444f2737f779696b6d5be9164bdf4f1aa97e00 (patch) | |
tree | df448ccfeb0ba4113bdfed21e5ddbf9405e5afc8 /Makefile | |
parent | Correct bash conditional (diff) | |
download | awx-99444f2737f779696b6d5be9164bdf4f1aa97e00.tar.xz awx-99444f2737f779696b6d5be9164bdf4f1aa97e00.zip |
Fix Makefile tabs/spaces
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -529,11 +529,11 @@ deb-src-upload: deb-src reprepro: deb mkdir -p $@/conf - cp -a packaging/reprepro $@/conf + cp -a packaging/reprepro/* $@/conf/ if [ "$(OFFICIAL)" = "yes" ] ; then \ - echo "ask-passphrase" >> $@/conf/options; \ - sed -i -e 's|^\(Codename:\)|SignWith: $(DEB_GPG_KEY)\n\1|' $@/conf/distributions ; \ - fi + echo "ask-passphrase" >> $@/conf/options; \ + sed -i -e 's|^\(Codename:\)|SignWith: $(DEB_GPG_KEY)\n\1|' $@/conf/distributions ; \ + fi @DEB=deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb ; \ for DIST in trusty precise ; do \ echo "Removing '$(NAME)' from the $${DIST} apt repo" ; \ |