Commit 6b266c2c authored by Stephan Eberle's avatar Stephan Eberle
Browse files

Fixed invalid presence condition for MERGE_UPDATE_SITE variable in

publish build script
parent 35f6dbc1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,7 +197,7 @@ echo "Copying $localUpdateSiteArchiveLocation to $targetDownloadsLocation"
mkdir -p $targetDownloadsLocation
cp $localUpdateSiteArchiveLocation $targetDownloadsLocation

if [ $MERGE_UPDATE_SITE != "false" ] && [ -f $targetUpdateSiteLocation/content.* ];
if [ -n $MERGE_UPDATE_SITE ] && [ -f $targetUpdateSiteLocation/content.* ];
	then
		echo "------------------------------------------------------------------------"
		echo "Merging project update site into build update site"