summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrecipes/images/files/library/imx6/update.sh2
-rwxr-xr-xrecipes/images/files/library/tegra/update.sh2
2 files changed, 2 insertions, 2 deletions
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