add missing directory separator to .profile append

This has definitely broken things for at least a handful of users.
This commit is contained in:
Brennen Bearnes 2015-04-27 14:11:54 -06:00
parent 7d07f55ed1
commit 258331fd9a

View file

@ -3,7 +3,7 @@
set -e
function print_version() {
echo "Adafruit PiTFT Helper v0.5.0"
echo "Adafruit PiTFT Helper v0.5.1"
exit 1
}
@ -167,7 +167,7 @@ function update_x11profile() {
echo "Already had 'export FRAMEBUFFER=/dev/fb1'"
else
echo "Adding 'export FRAMEBUFFER=/dev/fb1'"
cat >> "${target_homedir}.profile" <<EOF
cat >> "${target_homedir}/.profile" <<EOF
export FRAMEBUFFER=/dev/fb1
EOF
fi