Skip to content

Commit

Permalink
Merge pull request #24 from mowfask/upstream_issue_23
Browse files Browse the repository at this point in the history
Fix syntax errors in install.sh
  • Loading branch information
abhishek-kakkar committed Oct 2, 2017
2 parents e6d7742 + 812957b commit e2dd725
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ display_success_message() {
}


if [ "x$1" = "x--upgrade"] ; then
if [ "x$1" = "x--upgrade" ] ; then
UPGRADING="yes"
else
UPGRADING="no"
Expand All @@ -123,14 +123,14 @@ else
fi

install_pru_firmware
if [ "x${UPGRADING}" = "xno"] ; then
if [ "x${UPGRADING}" = "xno" ] ; then
create_beaglelogic_group
fi
install_udev_rules
install_systemd_service
install_node_modules
install_sigrok
if [ "x${UPGRADING}" = "xno"] ; then
if [ "x${UPGRADING}" = "xno" ] ; then
update_uboot_uenv_txt
fi
display_success_message

0 comments on commit e2dd725

Please sign in to comment.