aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-05-28 12:39:39 -0700
committerAdam Vandenberg2010-05-28 12:39:39 -0700
commit05fef4cfc5b204bccf45da8eb4b7120e12672e2a (patch)
tree937c2a2419a7b329a9af522e3b840d5f11d37f56 /Library
parenta5fca46904057617aa99df1fbb810a0e5054d62a (diff)
downloadhomebrew-05fef4cfc5b204bccf45da8eb4b7120e12672e2a.tar.bz2
Remove selflink script.
Between the quick-install steps and other instructions on the Wiki, this "self-link" script is no longer needed (and no longer recommended.)
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/selflink.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/Library/Contributions/selflink.sh b/Library/Contributions/selflink.sh
deleted file mode 100755
index 7a33c2c79..000000000
--- a/Library/Contributions/selflink.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env bash
-# This script links your clone into $install_base, so you can keep the .git
-# directory out of the way. Default for no parameters is /usr/local
-
-mode=$1
-if [[ -z $mode ]]; then
- mode="install"
-fi
-
-install_base=$2
-if [[ -z $install_base ]]; then
- install_base="/usr/local"
-fi
-
-source_base=`pwd`
-
-if [[ $mode == install ]]; then
- # Ensure that the Cellar exists -- otherwise Homebrew breaks
- if [[ ! -e "$source_base/Cellar" ]] ; then
- mkdir -p "$install_base/Cellar"
- fi
-
- if [[ ! -e "$source_base/bin" ]] ; then
- mkdir -p $install_base/bin
- fi
-
- ln -s "$source_base/bin/brew" "$install_base/bin/brew";
- ln -s "$source_base/Cellar" "$install_base/Cellar";
-elif [[ $mode == undo ]]; then
- if [[ -h "$install_base/bin/brew" ]] ; then
- rm "$install_base/bin/brew"
- fi
-
- if [[ -h "$install_base/Cellar" ]] ; then
- rm "$install_base/Cellar"
- fi
-else
- echo "Unknown command: $mode";
- echo " selflink.sh [install] >> symlinks to $install_base"
- echo " selflink.sh undo >> removes symlinks from $install_base"
-fi