Do not push-to-download if INTERNAL_UPDATE var is set to "YES"/"yes" even in FreeNAS.

This commit is contained in:
Suraj Ravichandran
2016-04-12 18:50:00 -07:00
parent 78b84e3c4f
commit 52e67fcba0

View File

@@ -154,7 +154,7 @@ release:
release-push: update-push
@${BUILD_TOOLS}/post-to-storage.py
@if [ "${PRODUCT}" == "FreeNAS" ]; then \
@if [ "${PRODUCT}" == "FreeNAS" -a "${INTERNAL_UPDATE}" != "YES" -a "${INTERNAL_UPDATE}" != "yes" ]; then \
${BUILD_TOOLS}/post-to-download.py; \
fi