commit cb388ebc75680f1bfb2a702fd36b2e28d1d590ad
parent aa3e1138115e444490d53a1fe39ece72796b9a2f
Author: Daniel Moch <daniel@danielmoch.com>
Date: Fri, 8 Mar 2019 12:02:37 -0500
Rsync nncli docs via http user
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/server/master.cfg b/server/master.cfg
@@ -80,7 +80,8 @@ nncli_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/nncli.git',
nncli_factory.addStep(steps.Configure(command=["make", "test-install"], env={"PYTHONPATH": "."}))
nncli_factory.addStep(steps.Test(command=["make", "test-all"], env={"PYTHONPATH": "."}))
nncli_factory.addStep(steps.ShellCommand(name="Sphinx", command=["make","html"], workdir="build/docs"))
-nncli_factory.addStep(steps.ShellCommand(name="Deploy Docs", command=['rsync', '-aPe', 'ssh', '--del', 'html', 'danielmoch.com:/srv/http/www/nncli'], workdir='build/docs/build'))
+nncli_factory.addStep(steps.ShellCommand(name="Deploy Docs", command=['rsync',
+ '-aPe', 'ssh', '--del', 'html', 'http@danielmoch.com:/srv/http/www/nncli'], workdir='build/docs/build'))
hookmeup_factory = util.BuildFactory()
hookmeup_factory.addStep(steps.Git(repourl='https://git.danielmoch.com/hookmeup.git', mode='full', method='clobber', shallow=True))