Skip to content

Commit 3d65837

Browse files
committed
Fix macOS framework path and consistent placeholder capitalization
1 parent 7bb9c87 commit 3d65837

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

testing/new-buildbot-worker.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ the steps below as appropriate if you choose that path.
223223
can put the ``buildarea`` wherever you want to)::
224224

225225
mkdir buildarea
226-
buildbot-worker create-worker buildarea buildbot-api.python.org:9020 workername workerpasswd
226+
buildbot-worker create-worker buildarea buildbot-api.python.org:9020 WORKERNAME WORKERPASSWD
227227

228228

229229
.. tab:: Windows
@@ -257,7 +257,7 @@ the steps below as appropriate if you choose that path.
257257
.. code-block::
258258
259259
mkdir buildarea
260-
buildbot-worker create-worker buildarea buildbot-api.python.org:9020 workername workerpasswd
260+
buildbot-worker create-worker buildarea buildbot-api.python.org:9020 WORKERNAME WORKERPASSWD
261261
262262
263263
The ``info/admin`` file in the worker directory should contain your contact
@@ -372,14 +372,11 @@ machine reboots:
372372
* Place the following script, named ``run_worker.sh``, into that directory::
373373

374374
#!/bin/bash
375-
export PATH=/usr/local/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin:$PATH
375+
export PATH=/usr/local/bin:/Library/Frameworks/Python.framework/Versions/Current/bin:$PATH
376376
export LC_CTYPE=en_US.utf-8
377377
cd /Users/buildbot/buildarea
378378
twistd --nodaemon --python=buildbot.tac --logfile=buildbot.log --prefix=worker
379379

380-
If you use pip with Apple's system python, add '/System' to the front of
381-
the path to the Python bin directory.
382-
383380
* Place a file with the following contents into ``/Library/LaunchDaemons``:
384381

385382
.. code-block:: xml

0 commit comments

Comments
 (0)