Skip to content

Commit

Permalink
Echo $LEIN_JAR path in self-install. Fixes technomancy#753.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Aug 28, 2012
1 parent b2a50ff commit a29bc0c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,8 @@ if [ "$1" = "self-install" ]; then
echo "If you wish to re-download, delete it and rerun \"$0 self-install\"."
exit 1
fi
echo "Downloading Leiningen now..."
LEIN_DIR=`dirname "$LEIN_JAR"`
mkdir -p "$LEIN_DIR"
echo "Downloading Leiningen to $LEIN_JAR now..."
mkdir -p $(dirname "$LEIN_JAR")
LEIN_URL="https://github.com/downloads/technomancy/leiningen/leiningen-$LEIN_VERSION-standalone.jar"
$HTTP_CLIENT "$LEIN_JAR.pending" "$LEIN_URL"
if [ $? == 0 ]; then
Expand Down

0 comments on commit a29bc0c

Please sign in to comment.