From 3da8d6619d40c02397b6066b1bf9571b7d69d8c7 Mon Sep 17 00:00:00 2001 From: Anonymousdog <30508073+Anonymousdog@users.noreply.github.com> Date: Tue, 26 Jun 2018 16:17:08 -0400 Subject: [PATCH] Fixed broken reference to README.md in installer.sh Replace README with README.md --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 2f38ecc..57d0b1d 100644 --- a/install.sh +++ b/install.sh @@ -129,10 +129,10 @@ systemctl daemon-reload systemctl enable displaycameras echo "Installation Successful!" -read -p "See the README? [Y/y/N/n]" +read -p "See the README.md? [Y/y/N/n]" if [ "$REPLY" = "Y" -o "$REPLY" = "y" ]; then echo "Use the space bar (or PgDn) to page down, PgUp to page up, q to quit" read -p "Press Enter to begin." - less $DIR/README + less $DIR/README.md fi exit 0