Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
bug 564987: buildbot should cope when firefox/plugins doesn't exist. …
Browse files Browse the repository at this point in the history
…r=catlee
  • Loading branch information
bhearsum committed May 13, 2010
1 parent 7dcc58c commit 2d5a087
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion steps/unittest.py
Expand Up @@ -447,7 +447,8 @@ def __init__(self, symbols_path=None, **kwargs):

self.addFactoryArguments(symbols_path=symbols_path)

script = """cp bin/xpcshell %(exedir)s
script = """if [ ! -d %(exedir)s/plugins ]; then mkdir %(exedir)s/plugins; fi
cp bin/xpcshell %(exedir)s
cp -R bin/components/* %(exedir)s/components/
cp -R bin/plugins/* %(exedir)s/plugins/
python -u xpcshell/runxpcshelltests.py""".replace("\n", " && ")
Expand Down

0 comments on commit 2d5a087

Please sign in to comment.