Skip to content

Commit

Permalink
Delete chaff, such as install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Mar 20, 2013
1 parent 9898e7c commit 1b67923
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 128 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,26 44,25 @@ with the provided script. If you do not run this script, Meteor will
automatically download pre-compiled binaries when you first run it.

# OPTIONAL
./admin/generate-dev-bundle.sh
./scripts/generate-dev-bundle.sh

Now you can run meteor directly from the checkout (if you did not
build the dependency bundle above, this will take a few moments to
download a pre-build version).

./meteor --help

Or install to ```/usr/local``` like the normal install process. This
will cause ```meteor``` to be in your ```PATH```.
After installing, you can read the docs locally. The `/docs` directory is a
meteor application, so simply change into the `/docs` directory and launch
the app:

./install.sh
meteor --help

After installing, you can read the docs locally. The ```/docs``` directory is a meteor application, so simply change into the ```/docs``` directory and launch the app:

cd docs/
meteor

You'll then be able to read the docs locally in your browser at ```http://localhost:3000/```
You'll then be able to read the docs locally in your browser at `http://localhost:3000/`

Note that if you run Meteor from a git checkout, you cannot pin apps to specific
Meteor releases or run using different Meteor releases using `--release`.

## Developer Resources

Expand All @@ -72,7 71,7 @@ Building an application with Meteor?
* Announcement list: sign up at http://www.meteor.com/
* Ask a question: http://stackoverflow.com/questions/tagged/meteor
* Meteor help and discussion mailing list: https://groups.google.com/group/meteor-talk
* IRC: ```#meteor``` on ```irc.freenode.net```
* IRC: `#meteor` on `irc.freenode.net`

Interested in contributing to Meteor?

Expand Down
49 changes: 0 additions & 49 deletions install.sh

This file was deleted.

53 changes: 0 additions & 53 deletions scripts/copy-release-from-jenkins.sh

This file was deleted.

16 changes: 0 additions & 16 deletions tools/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 16,10 @@ var manifestUrl = testingUpdater
? 'https://s3.amazonaws.com/com.meteor.static/test/update/manifest.json'
: 'https://update.meteor.com/manifest.json';


/**
* Downloads the current manifest file and returns it via a callback (or
* null on error)
*/
exports.getManifest = function () {
return files.getUrl({url: manifestUrl, json: true});
};

exports.git_sha = function () {
var d = files.get_dev_bundle();
var f = path.join(d, ".git_version.txt");

if (fs.existsSync(f)) {
try {
var contents = fs.readFileSync(f, 'utf8');
contents = contents.replace(/\s $/, "");
return contents;
} catch (err) { }
}

return null;
};

0 comments on commit 1b67923

Please sign in to comment.