Commit graph

41 commits

Author SHA1 Message Date
Omar S.
88bc7938fd Updated the links of node for windows, linux and mac 2014-12-29 15:22:49 -05:00
Michael Schmatz
fad270f2af Merge pull request #1172 from thgil/master
Check for 64-bit arch in setup.py
2014-06-17 14:45:49 -07:00
Fergus Leen
ecf24c2875 Commit on wrong branch - reverted 2014-06-17 19:56:13 +01:00
Fergus Leen
de1f6ab50a Check for git repository before cloning 2014-06-17 19:44:32 +01:00
Fergus Leen
42304d8fb4 Check for git repository before cloning 2014-06-17 19:30:32 +01:00
Fergus Leen
15d89789f2 Checks for false positive 64 bit 2014-06-16 21:48:27 +01:00
Fergus Leen
479c2a0cc1 Added str around sys.maxsize 2014-06-15 08:32:06 +01:00
Nick Winter
b7f3d5310e #353 is fixed as far as I can tell; python3 and python2 both run setup. 2014-04-11 20:48:42 -07:00
Nick Winter
137d2b0fd4 Fixed #419 to not redo node/mongo downloads when rerunning the script. 2014-04-11 20:37:06 -07:00
Nick Winter
8ea2a80088 Fixed #555. Fixed #350. 2014-04-11 19:58:52 -07:00
Nick Winter
dea1c7607a Horribly untested improvement for #555 which I will test momentarily. 2014-04-11 19:08:55 -07:00
dpen2000
08d7d2cc87 Fix error "SyntaxError: EOL while scanning string literal" when running setup.py script 2014-03-31 23:15:18 +01:00
Rowan Decker
cad1448b9f Add Help Message
Not everyone runs Ubuntu/Debian and is using apt-get, so add a friendly reminder to check with your distro's documentation for help.
2014-03-29 18:59:10 -05:00
Rowan Decker
8f3f9f8516 Update Completion Message
Adds a link to the "MongoDB database import" section of the wiki, as this step must be completed before they can play any levels.

Also adds some whitespace :)
2014-03-29 18:45:53 -05:00
Rowan Decker
f88b7142e4 Fix Mac Download
I had a copy-paste error when changing the mongo download links in my previous commit. This fixes that.

98adf2fe4f
2014-03-29 18:36:01 -05:00
Rowan Decker
a6567de187 Fix Python Download
bootstrap.sh was using the "open" command to open a link. While this may work on a Mac, the command does not exist on Linux. Instead we can now use a switch to use the correct command for the users OS.

Ohh and python.org/getit is a 404 -> Changed it to python.org/download
2014-03-29 18:23:58 -05:00
Rowan Decker
98adf2fe4f Update Mongo
This updates the installer script to use the latest mongo (v2.6 nightly)
2014-03-29 18:04:36 -05:00
Rowan Decker
1e2ada7b57 Use Global Gem Install
Durring the setup the "sass" gem is installed. This works fine on Linux operating systems like Ubuntu. However, on some other distrobutions such as Arch Linux "gem install" defaults to the a local folder in the users home directory. When installed here the sass binary is not on the path and coco-brunch cannot find it (and thus crashes with an error). By adding the "--no-user-install" flag we are telling gem to install it globally no matter what the system default is thus fixing this problem.
2014-03-29 15:08:55 -05:00
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