mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 05:29:26 -02:30
Correct bash conditional
This commit is contained in:
8
Makefile
8
Makefile
@@ -529,10 +529,10 @@ deb-src-upload: deb-src
|
|||||||
|
|
||||||
reprepro: deb
|
reprepro: deb
|
||||||
mkdir -p $@/conf
|
mkdir -p $@/conf
|
||||||
cp -a packaging/reprepro/* $@/conf/
|
cp -a packaging/reprepro $@/conf
|
||||||
if [ "$(OFFICIAL)" == "yes" ] ; then \
|
if [ "$(OFFICIAL)" = "yes" ] ; then \
|
||||||
echo "ask-passphrase" >> $@/conf; \
|
echo "ask-passphrase" >> $@/conf/options; \
|
||||||
sed -i -e 's|^\(Codename:\)|SignWith: $(DEB_GPG_KEY)\n\1|' $@/distributions ; \
|
sed -i -e 's|^\(Codename:\)|SignWith: $(DEB_GPG_KEY)\n\1|' $@/conf/distributions ; \
|
||||||
fi
|
fi
|
||||||
@DEB=deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb ; \
|
@DEB=deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb ; \
|
||||||
for DIST in trusty precise ; do \
|
for DIST in trusty precise ; do \
|
||||||
|
|||||||
Reference in New Issue
Block a user