Skip to content

Commit

Permalink
"make upload" check for unset LIBMESH_SVN_USER
Browse files Browse the repository at this point in the history
This way there won't be anyone else who gets confused when "make
upload" fails to accept any passwords.  I mean, not that anyone got
confused before.  I'm asking for a friend.
  • Loading branch information
roystgnr committed Feb 8, 2014
1 parent b78a38b commit c7f1099
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ doc html:
# other than $USER when connecting to sourceforge servers... Please set the
# environment variable: $LIBMESH_SVN_USER.
upload:
if [ x$(LIBMESH_SVN_USER) = x ]; then echo "Set LIBMESH_SVN_USER environment variable"; false; fi
chmod -R g+w $(top_builddir)/doc/html/* $(top_srcdir)/doc/html/* $(top_srcdir)/doc/latex/*/*
rsync -rltzve ssh --exclude '.svn' $(top_srcdir)/doc/html/ $(LIBMESH_SVN_USER),[email protected]:/home/groups/l/li/libmesh/htdocs/
rsync -rltzve ssh --exclude '.svn' $(top_builddir)/doc/html/ $(LIBMESH_SVN_USER),[email protected]:/home/groups/l/li/libmesh/htdocs/
Expand Down
1 change: 1 addition & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -27758,6 +27758,7 @@ doc html:
# other than $USER when connecting to sourceforge servers... Please set the
# environment variable: $LIBMESH_SVN_USER.
upload:
if [ x$(LIBMESH_SVN_USER) = x ]; then echo "Set LIBMESH_SVN_USER environment variable"; false; fi
chmod -R g+w $(top_builddir)/doc/html/* $(top_srcdir)/doc/html/* $(top_srcdir)/doc/latex/*/*
rsync -rltzve ssh --exclude '.svn' $(top_srcdir)/doc/html/ $(LIBMESH_SVN_USER),[email protected]:/home/groups/l/li/libmesh/htdocs/
rsync -rltzve ssh --exclude '.svn' $(top_builddir)/doc/html/ $(LIBMESH_SVN_USER),[email protected]:/home/groups/l/li/libmesh/htdocs/
Expand Down

0 comments on commit c7f1099

Please sign in to comment.