projects
/
platform
/
core
/
appfw
/
pkgmgr-tool.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0335667
)
Remove directory using rm -r
41/244241/1
author
Sangyoon Jang
<jeremy.jang@samsung.com>
Wed, 16 Sep 2020 08:22:23 +0000
(17:22 +0900)
committer
Sangyoon Jang
<jeremy.jang@samsung.com>
Wed, 16 Sep 2020 08:22:23 +0000
(17:22 +0900)
rmdir can be fail if there are files under shared/data.
Change-Id: If6a67d4a1c019ebc0c034fbaad4c33f813d95a5e
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
data/updates/upgrade_to_30005.sh.in
patch
|
blob
|
history
diff --git
a/data/updates/upgrade_to_30005.sh.in
b/data/updates/upgrade_to_30005.sh.in
index
287510f
..
dd71348
100644
(file)
--- a/
data/updates/upgrade_to_30005.sh.in
+++ b/
data/updates/upgrade_to_30005.sh.in
@@
-161,7
+161,7
@@
function remove_shareddata() {
echo "#remove shareddata"
for shared in `find $TZ_SYS_RW_APP -mindepth 2 -maxdepth 2 -name shared`
do
- find $shared -mindepth 1 -maxdepth 1 -name data -exec rm
di
r {} \;
+ find $shared -mindepth 1 -maxdepth 1 -name data -exec rm
-
r {} \;
done
}