Skip to content

Instantly share code, notes, and snippets.

@dannycroft
Forked from nicerobot/README.md
Created December 14, 2012 11:45
Show Gist options
  • Select an option

  • Save dannycroft/4284854 to your computer and use it in GitHub Desktop.

Select an option

Save dannycroft/4284854 to your computer and use it in GitHub Desktop.

Revisions

  1. @nicerobot nicerobot revised this gist Jul 15, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion uninstall-node.sh
    Original file line number Diff line number Diff line change
    @@ -13,7 +13,7 @@
    # This will need to be executed as an Admin (maybe just use sudo).

    # Verify the bom exists, otherwise don't do anything
    [ -d /var/db/receipts/org.nodejs.pkg.bom ] || {
    [ -e /var/db/receipts/org.nodejs.pkg.bom ] || {
    echo 'Nothing to do.'
    exit 0
    }
  2. @nicerobot nicerobot created this gist May 14, 2012.
    33 changes: 33 additions & 0 deletions uninstall-node.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    #!/bin/sh
    (( ${#} > 0 )) || {
    echo 'DISCLAIMER: USE THIS SCRIPT AT YOUR OWN RISK!'
    echo 'THE AUTHOR TAKES NO RESPONSIBILITY FOR THE RESULTS OF THIS SCRIPT.'
    echo "Disclaimer aside, this worked for the author, for what that's worth."
    echo 'Press Control-C to quit now.'
    read
    echo 'Re-running the script with sudo.'
    echo 'You may be prompted for a password.'
    sudo ${0} sudo
    exit $?
    }
    # This will need to be executed as an Admin (maybe just use sudo).

    # Verify the bom exists, otherwise don't do anything
    [ -d /var/db/receipts/org.nodejs.pkg.bom ] || {
    echo 'Nothing to do.'
    exit 0
    }

    # Loop through all the files in the bom.
    lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom \
    | while read i; do
    # Remove each file listed in the bom.
    rm /usr/local/${i}
    done

    # Remove directories related to node.js.
    rm -rf /usr/local/lib/node \
    /usr/local/lib/node_modules \
    /var/db/receipts/org.nodejs.*

    exit 0