From ca838b0ea37b5440d25b88ecea3d1d71c7b7c3c4 Mon Sep 17 00:00:00 2001 From: Joubin Jabbari Date: Sat, 24 Oct 2015 00:02:13 -0700 Subject: [PATCH 1/2] removed extra path ``` root@localhost:~# cd letsencrypt/ root@localhost:~/letsencrypt# ./bootstrap/install-deps.sh Cannot find the letsencrypt bootstrap scripts in ./bootstrap/bootstrap ``` However, with the proposed change ``` root@localhost:~/letsencrypt# ./bootstrap/install-deps.sh Bootstrapping dependencies for Debian-based OSes... Ign http://mirrors.linode.com jessie InRelease Hit http://mirrors.linode.com jessie-updates InRelease ``` --- bootstrap/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/install-deps.sh b/bootstrap/install-deps.sh index 159027c84..c7247c5d1 100755 --- a/bootstrap/install-deps.sh +++ b/bootstrap/install-deps.sh @@ -9,7 +9,7 @@ else SUDO= fi -BOOTSTRAP=`dirname $0`/bootstrap +BOOTSTRAP=`dirname $0`/ if [ ! -f $BOOTSTRAP/debian.sh ] ; then echo "Cannot find the letsencrypt bootstrap scripts in $BOOTSTRAP" exit 1 From 3386cd8711395794a1e943be39e670cf9c16f2c2 Mon Sep 17 00:00:00 2001 From: Joubin Jabbari Date: Sat, 24 Oct 2015 00:27:12 -0700 Subject: [PATCH 2/2] removed trading slash --- bootstrap/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/install-deps.sh b/bootstrap/install-deps.sh index c7247c5d1..c159858c5 100755 --- a/bootstrap/install-deps.sh +++ b/bootstrap/install-deps.sh @@ -9,7 +9,7 @@ else SUDO= fi -BOOTSTRAP=`dirname $0`/ +BOOTSTRAP=`dirname $0` if [ ! -f $BOOTSTRAP/debian.sh ] ; then echo "Cannot find the letsencrypt bootstrap scripts in $BOOTSTRAP" exit 1