Nick Winter
6c2d4fac7d
Noticed a tab and converted to spaces.
2014-02-27 11:58:45 -08:00
Akhil Thampy
673b5ff04e
Fix for "Type str doesn't support the buffer API"
...
subprocess.check_output("mongod --version",shell=True) returns a byte
string so to convert it to a regular string we should do this :
mongo_version_string = subprocess.check_output("mongod
--version",shell=True)
mongo_version_string = mongo_version_string.decode(encoding='UTF-8')
2014-02-26 23:15:04 -06:00
Michael Schmatz
365810d302
Merge pull request #355 from LightAndLight/master
...
Updated scripts/devSetup python scripts to natively support python2.7 or python3
2014-02-12 11:21:17 -08:00
Michael Schmatz
762a91e4db
Added check if node exists
2014-02-12 11:05:19 -08:00
Isaac
3351bfce2f
Modified python scripts to support both python2.7 and python3 natively
2014-02-11 04:30:58 +10:00
Michael Schmatz
bd8ece2645
Put raw_input() into loop to fix #144
2014-01-10 22:36:49 -08:00
Michael Schmatz
fd3e678a95
Fixed temporary directory removal bug
2014-01-09 10:11:30 -05:00
Michael Schmatz
24e36ba26d
Added chown to bower_components directory
2014-01-08 18:43:08 -05:00
Michael Schmatz
95885a8de2
Added script to check for old version of node
...
Deals with issue #98 .
2014-01-08 15:14:56 -05:00
Michael Schmatz
b8d65bab44
Fixed function call
2014-01-05 22:42:44 -05:00
Michael Schmatz
5238b85a96
Edited script to enable pulling of forked repositories
2014-01-05 19:51:54 -05:00
Michael Schmatz
a2138e5d3d
Fixed bin deletion bug
2014-01-05 14:01:22 -05:00
Michael Schmatz
5687fae1cc
More intermittent improvements and cleanup
2014-01-04 17:53:41 -05:00
Michael Schmatz
c366945d89
Improved behavior when tmp directory exists
2014-01-04 17:14:18 -05:00
Michael Schmatz
c0a9ebe548
Deleted redundant scripts and fixed 32 bit bug
2014-01-04 16:22:56 -05:00
Michael Schmatz
c50bba824d
Updated instructions
2014-01-03 21:31:36 -05:00
Michael Schmatz
089411b723
Made python scripts executables instead of bash scripts
2014-01-03 20:07:54 -05:00
Michael Schmatz
674ba86479
Fixed installation scripts and put bin scripts into bin
2014-01-03 19:31:37 -05:00
Michael Schmatz
7ff15630fc
Fixed permission level
...
(fully open causes problems with ruby)
2014-01-03 15:08:14 -05:00
Michael Schmatz
52dfcc7093
Updated python script to fix bug
2014-01-03 14:19:31 -05:00
Nick Winter
0c7ad266a4
startBrunch.py appears to require sudo yet.
2014-01-03 11:04:06 -08:00
Nick Winter
9407347003
Updating bootstrap script to point to public repo.
2014-01-03 10:42:37 -08:00
Nick Winter
6009df26de
Ready for action, sir!
2014-01-03 10:32:13 -08:00