From d0e9221cf97e2759f450a1d359485e037f6af241 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Fri, 12 Apr 2019 19:58:26 +0300 Subject: [PATCH] Fix post-upgrade 20190127 --- board/common/overlay/usr/share/post-upgrade/20190127.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/common/overlay/usr/share/post-upgrade/20190127.sh b/board/common/overlay/usr/share/post-upgrade/20190127.sh index 0041888f94..a50b227922 100755 --- a/board/common/overlay/usr/share/post-upgrade/20190127.sh +++ b/board/common/overlay/usr/share/post-upgrade/20190127.sh @@ -15,7 +15,8 @@ function process_file() { # $1 - file path test -f $1 || return - cat $1 | to_uppercase > $1 + cat $1 | to_uppercase > $1.new + mv $1.new $1 } process_file /data/etc/os.conf