From 103bbebad0ebeec98af5bb8912ed5916e399ff23 Mon Sep 17 00:00:00 2001 From: Nabeel Sowan Date: Wed, 4 May 2016 16:44:52 +0200 Subject: [PATCH] iop: fix cfe_upgrade script, wrong image type --- iop/scripts/cfe_upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iop/scripts/cfe_upgrade.sh b/iop/scripts/cfe_upgrade.sh index 7a87af857..b8cf61fa1 100644 --- a/iop/scripts/cfe_upgrade.sh +++ b/iop/scripts/cfe_upgrade.sh @@ -34,7 +34,7 @@ function cfe_upgrade_latest { exit 1 fi { cd `dirname $0` - IMAGE=`ls -Art bin/*/*.y | tail -n1` + IMAGE=`ls -Art bin/*/*.w | tail -n1` [ "$IMAGE" ] && [ -e "$IMAGE" ] && ./iop cfe_upgrade $1 $IMAGE } }