Skip to content

Commit

Permalink
INSTALL: adding support for FR locale in git clone status checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Commit-La-Grenouille committed Mar 20, 2022
1 parent 4012a0d commit 14637dc
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ if [ $upgrade -eq 1 -a $makerfaire2018 -eq 0 -a -d ${home_dir}/wm8960 ]; then
cd ${home_dir}/wm8960
sudo chown -R ${owner} .git
pull=`git pull`
if [ "$pull" != "Already up to date." ]; then
if [ "$pull" == "Already up to date." -o "$pull" == "Déjà à jour." ]; then
echo "Sound driver is already up-to-date..."
else
make && sudo make install && make clean
sudo touch /tmp/pynab.upgrade.reboot
fi
Expand All @@ -89,7 +91,9 @@ if [ $upgrade -eq 1 ]; then
cd ${home_dir}/tagtagtag-ears
sudo chown -R ${owner} .git
pull=`git pull`
if [ "$pull" != "Already up to date." ]; then
if [ "$pull" == "Already up to date." -o "$pull" == "Déjà à jour." ]; then
echo "Ears driver is already up-to-date..."
else
make && sudo make install && make clean
sudo touch /tmp/pynab.upgrade.reboot
fi
Expand All @@ -113,7 +117,9 @@ if [ $upgrade -eq 1 ]; then
cd ${home_dir}/cr14
sudo chown -R ${owner} .git
pull=`git pull`
if [ "$pull" != "Already up to date." ]; then
if [ "$pull" == "Already up to date." -o "$pull" == "Déjà à jour." ]; then
echo "RFID driver is already up-to-date..."
else
make && sudo make install && make clean
sudo touch /tmp/pynab.upgrade.reboot
fi
Expand All @@ -137,7 +143,9 @@ if [ $upgrade -eq 1 ]; then
cd ${root_dir}/nabblockly
sudo chown -R ${owner} .
pull=`git pull`
if [ "$pull" != "Already up to date." ]; then
if [ "$pull" == "Already up to date." -o "$pull" == "Déjà à jour." ]; then
echo "NabBlockly is already up-to-date..."
else
./rebar3 release
fi
else
Expand Down

0 comments on commit 14637dc

Please sign in to comment.