Skip to content

Commit

Permalink
Initial Commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Jul 14, 2010
0 parents commit 4c6fab7
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitmodules
@@ -0,0 +1,15 @@
[submodule "Modules/Connect"]
path = Modules/Connect
url = http://github.com/extjs/Connect.git
[submodule "Modules/nStore"]
path = Modules/nStore
url = http://github.com/creationix/nstore.git
[submodule "Modules/grain"]
path = Modules/grain
url = http://github.com/creationix/grain.git
[submodule "Modules/nstore-session"]
path = Modules/nstore-session
url = http://github.com/creationix/nstore-session.git
[submodule "Modules/step"]
path = Modules/step
url = http://github.com/creationix/step.git
1 change: 1 addition & 0 deletions Modules/Connect
Submodule Connect added at b13168
1 change: 1 addition & 0 deletions Modules/grain
Submodule grain added at 623563
1 change: 1 addition & 0 deletions Modules/nStore
Submodule nStore added at bd2c0f
1 change: 1 addition & 0 deletions Modules/nstore-session
Submodule nstore-session added at 9deeb1
1 change: 1 addition & 0 deletions Modules/step
Submodule step added at 14ad49
Empty file added README.markdown
Empty file.
Binary file added bin/node-linux
Binary file not shown.
Binary file added bin/node-osx
Binary file not shown.
1 change: 1 addition & 0 deletions lib/node/.gitignore
@@ -0,0 +1 @@
*
11 changes: 11 additions & 0 deletions relink.sh
@@ -0,0 +1,11 @@
#!/bin/bash

BASE=`pwd`
cd lib/node
echo "Removing old links"
rm *
echo "Making new links to libraries in Modules"
ln -s ../../Modules/*/lib/* ./
echo "Current libraries installed:"
ls
cd $BASE
10 changes: 10 additions & 0 deletions update.sh
@@ -0,0 +1,10 @@
#!/bin/bash
BASE=`pwd`

for name in `ls Modules`; do
cd "Modules/$name"
echo "Updating $name"
git pull origin master --tags
git submodule update
cd $BASE
done

0 comments on commit 4c6fab7

Please sign in to comment.