0a348ac2e2
(i.e., the script that fires via cron every 15 mins to "git pull" from the github ompi-www repo). This commit moves the mercurial mirroring script to the "infrastructure" directory. This commit was SVN r31360.
12 строки
203 B
Bash
Исполняемый файл
12 строки
203 B
Bash
Исполняемый файл
#!/bin/sh
|
|
|
|
cd /l/osl/www/www.open-mpi.org
|
|
|
|
# Absolutely ensure that we have a umask of 2 so that others can
|
|
# run "svn up" in this tree, too
|
|
umask 2
|
|
|
|
git pull --rebase origin
|
|
|
|
date >> /tmp/bogus-mpiteam
|