cbcc5d1255988eb2f6c4d7619793e3465928412f
galt
  Fri Aug 13 14:04:40 2010 -0700
trying it without -q so people are aware of the updates happening
diff --git src/hg/js/makefile src/hg/js/makefile
index 7ed85f2..56b3ab0 100644
--- src/hg/js/makefile
+++ src/hg/js/makefile
@@ -1,33 +1,31 @@
 include ../../inc/common.mk
 
-GITUP = git pull -q
-
 # recursive target to do install to DEST, with extra excludes EXCL.
 
 JQUERY_FILES=jquery-1.2.6.pack.js jquery.js jquery.tablednd.js jquery.imgareaselect.js jquery-ui.js jquery.contextmenu.js jquery.autocomplete.js ui.core.js ui.dropdownchecklist.js
 JS_FILES=ajax.js autocomplete.js hgGateway.js hgTracks.js hui.js utils.js ${JQUERY_FILES}
 ifdef LOWELAB
     JS_FILES += lowetooltip.js loweautocomplete.js
 endif
 
 user:
 	${MAKE} doInstall DEST=${DOCUMENTROOT}/js/${USER}
 
 alpha:
 	${GITUP}
 	${MAKE} doInstall DEST=${DOCUMENTROOT}/js
 
 beta:
 	${GITUP} 
 	${MAKE} doInstall DEST=${DOCUMENTROOT}/js
 
 clean:
 
 compile:
 
 install:
 	${MAKE} doInstall DEST=${DOCUMENTROOT}/js
 
 doInstall:
 	@mkdir -p ${DEST}/
 	./cpJsFiles.pl -exclude='makefile' -destDir=${DEST} ${JS_FILES}