From aff2c3977a8b775f5d2bd389f0f5938ace82db84 Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Sat, 1 Aug 2015 16:49:32 +0200 Subject: update.sh: fix test for parted Now that we exit on failure the test for a user accessible parted must not return an error code. --- recipes/images/files/library/imx6/update.sh | 2 +- recipes/images/files/library/tegra/update.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes') diff --git a/recipes/images/files/library/imx6/update.sh b/recipes/images/files/library/imx6/update.sh index 4dd7592..1932804 100755 --- a/recipes/images/files/library/imx6/update.sh +++ b/recipes/images/files/library/imx6/update.sh @@ -9,7 +9,7 @@ set -e # sometimes we need the binary echo, not the shell builtin ECHO=`which echo` #some distros have fs tools only in root's path -PARTED=`which parted` 2> /dev/null +PARTED=`which parted` 2> /dev/null || true if [ -e "$PARTED" ] ; then MKFSVFAT=`which mkfs.vfat` else diff --git a/recipes/images/files/library/tegra/update.sh b/recipes/images/files/library/tegra/update.sh index 862ceb5..e765990 100755 --- a/recipes/images/files/library/tegra/update.sh +++ b/recipes/images/files/library/tegra/update.sh @@ -8,7 +8,7 @@ set -e # sometimes we need the binary echo, not the shell builtin ECHO=`which echo` #some distros have fs tools only in root's path -PARTED=`which parted` 2> /dev/null +PARTED=`which parted` 2> /dev/null || true if [ -e "$PARTED" ] ; then MKFSVFAT=`which mkfs.vfat` else -- cgit v1.2.3