diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2016-04-06 15:05:44 +0200 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2016-04-06 15:05:44 +0200 |
commit | d92b2d3e417d371d56be28d7a87987b7090c188f (patch) | |
tree | 105afadf87fc5ae250b89db70173199086f46ace | |
parent | 301e00ea51f69f552c734601979227083c4922b4 (diff) |
Make sure env-setup work on black clones.
-rwxr-xr-x | env-setup | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ #!/bin/sh # Set up the local scraperwiki python library -if [ ! -d testlib ] ; then - mkdir testlib +if [ ! -d testlib/scraperwiki-python ] ; then + mkdir -p testlib git clone https://github.com/petterreinholdtsen/scraperwiki-python.git \ testlib/scraperwiki-python (cd testlib/scraperwiki-python; git checkout -b localbranch) |