@@ -76,7 +76,8 @@ if [ $upgrade -eq 1 -a $makerfaire2018 -eq 0 -a -d ${home_dir}/wm8960 ]; then
7676 echo " Updating sound driver - 2/14" > /tmp/pynab.upgrade
7777 cd ${home_dir} /wm8960
7878 sudo chown -R ${owner} .git
79- pull=` git pull`
79+ # Making sure we keep the up-to-date status message consistent no matter the rebase default behavior
80+ pull=$( LANGUAGE=en git pull --no-rebase)
8081 if [ " $pull " != " Already up to date." ]; then
8182 make && sudo make install && make clean
8283 sudo touch /tmp/pynab.upgrade.reboot
@@ -88,7 +89,8 @@ if [ $upgrade -eq 1 ]; then
8889 if [ -d ${home_dir} /tagtagtag-ears ]; then
8990 cd ${home_dir} /tagtagtag-ears
9091 sudo chown -R ${owner} .git
91- pull=` git pull`
92+ # Making sure we keep the up-to-date status message consistent no matter the rebase default behavior
93+ pull=$( LANGUAGE=en git pull --no-rebase)
9294 if [ " $pull " != " Already up to date." ]; then
9395 make && sudo make install && make clean
9496 sudo touch /tmp/pynab.upgrade.reboot
@@ -112,7 +114,8 @@ if [ $upgrade -eq 1 ]; then
112114 if [ -d ${home_dir} /cr14 ]; then
113115 cd ${home_dir} /cr14
114116 sudo chown -R ${owner} .git
115- pull=` git pull`
117+ # Making sure we keep the up-to-date status message consistent no matter the rebase default behavior
118+ pull=$( LANGUAGE=en git pull --no-rebase)
116119 if [ " $pull " != " Already up to date." ]; then
117120 make && sudo make install && make clean
118121 sudo touch /tmp/pynab.upgrade.reboot
@@ -135,8 +138,9 @@ if [ $upgrade -eq 1 ]; then
135138 echo " Updating NabBlockly - 5/14" > /tmp/pynab.upgrade
136139 if [ -d ${root_dir} /nabblockly ]; then
137140 cd ${root_dir} /nabblockly
138- sudo chown -R ${owner} .
139- pull=` git pull`
141+ sudo chown -R ${owner}
142+ # Making sure we keep the up-to-date status message consistent no matter the rebase default behavior
143+ pull=$( LANGUAGE=en git pull --no-rebase)
140144 if [ " $pull " != " Already up to date." ]; then
141145 ./rebar3 release
142146 fi
0 commit comments