08fdf67a2e1ee7554a026b1eef5b759c0b08c268
brianlee
  Tue Jun 25 09:23:48 2019 -0700
Adding tested chmod -R g+w step in hgGene makefile of sandbox/USER to match alpha beta makes now that QA can make CGIs to push to genome-preview

diff --git src/hg/hgGene/makefile src/hg/hgGene/makefile
index 56d4d5e..71d0325 100644
--- src/hg/hgGene/makefile
+++ src/hg/hgGene/makefile
@@ -6,30 +6,31 @@
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 A = hgGene
 
 O = hgGene.o alleles.o altSplice.o ctd.o dnaBindMotif.o domains.o gad.o malaCards.o\
     flyBaseInfo.o gtex.o go.o info.o links.o microarray.o \
     method.o localization.o mrnaDescriptions.o otherOrgs.o\
     pathways.o pseudoGene.o rgdInfo.o rnaStructure.o sequence.o swissProtComments.o \
     synonym.o wikiTrack.o geneReviews.o
 
 include ../../inc/cgi_build_rules.mk
 
 my::
 	rm -fr ${CGI_BIN}-${USER}/hgGeneData
 	rsync -ar --exclude=CVS/ --exclude=.svn/ --delete hgGeneData ${CGI_BIN}-${USER}/
+	chmod -R g+w ${CGI_BIN}-${USER}/hgGeneData
 	chmod -R a+rX ${CGI_BIN}-${USER}/hgGeneData
 
 install::
 	rm -fr ${DESTDIR}${CGI_BIN}/hgGeneData
 	rsync -ar --exclude=CVS/ --exclude=.svn/ --delete hgGeneData \
 		${DESTDIR}${CGI_BIN}/
 	chmod -R a+rX ${DESTDIR}${CGI_BIN}/hgGeneData
 
 alpha::
 	rm -fr ${CGI_BIN}/hgGeneData
 	rsync -ar --exclude=CVS/ --exclude=.svn/ --delete hgGeneData ${CGI_BIN}/
 	chmod -R g+w ${CGI_BIN}/hgGeneData
 	chmod -R a+rX ${CGI_BIN}/hgGeneData
 
 beta::