Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to clone a github repo after npm has installed a new package I've just published.

Here's a quick example:

The user currently in /test and types npm install cliste

npm installs all my dependencies correctly, and sees I have a postinstall script in my package.json and executes it (all this works correctly). Please see my package.json below

{
    "name": "cliste",
    "description": "A NodeJS CMS",
    "version": "0.0.9",
    "homepage": "http://www.brianmartin.com",
    "repository": {
        "type": "git",
        "url": "git@github.com:bmarti44/Cliste.git"
    },
    "author": "Brian Martin <brian@brianmartin.com> (brianmartin.com)",
    "directories": {
        "lib": "./bin",
        "conf": "./core",
        "modules": "./sites"
    },
    "engines": {
        "node": ">=0.6||>=0.8"
    },
    "devDependencies": {
        "mocha": "~1.4.2",
        "should": "~1.1.0"
    },
    "dependencies": {
        "express": "1.0.x",
        "connect": "2.3.x",
        "mongoose": "2.5.x",
        "require-dir": "0.1.0",
        "mongodb": "0.9.x",
        "node-static": "0.6.x",
        "connect-form": "0.2.x",
        "request": "2.9.x",
        "handlebars": "1.0.x",
        "mime": "1.2.x",
        "mailer": "~0.6.4",
        "everyauth": "0.3.x"
    },
    "scripts": {
        "postinstall": "node ./bin/install/index.js"
    },
    "bin": {
        "cliste": "./bin/cliste/index.js"
    }
}

npm then calls my script, index.js, please see below

#! /usr/bin/env node

var sys = require('sys'),
    exec = require('child_process').exec,
    terminal = require('child_process').spawn('bash'),
    install,
    link;

link = exec("git clone https://github.com/bmarti44/Cliste.git $PWD", function (error, stdout, stderr) {

    if (stdout) {
        console.log(stdout);
    }

    if (stderr) {
        console.log(stderr);
    }

    process.exit(0);
});

Unfortunately, $PWD is not the correct directory to use. . . I want to clone the git repo to the directory the user is currently in /test

But $PWD is the directory that npm is currently executing in. I'd like to be able to detect the user's working directory without making the user pass it in as a parameter.

Any ideas?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.