summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-11-04 07:25:04 +0100
committerTao Bao <tbao@google.com>2016-11-04 07:35:42 +0100
commita659d79b923cfce21f13519747d2f16048290849 (patch)
treebc61f50afbb14f140941b183f182e14fe580f49b /updater
parentupdater: Fix a bug in DeleteFn(). (diff)
downloadandroid_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar.gz
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar.bz2
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar.lz
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar.xz
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.tar.zst
android_bootable_recovery-a659d79b923cfce21f13519747d2f16048290849.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/install.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index 25f6a9106..ed55ea517 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -293,7 +293,7 @@ Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
}
int64_t size;
- if (!android::base::ParseInt(fs_size.c_str(), &size)) {
+ if (!android::base::ParseInt(fs_size, &size)) {
return ErrorAbort(state, kArgsParsingFailure,
"%s: failed to parse int in %s\n", name, fs_size.c_str());
}
@@ -329,6 +329,9 @@ Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
return nullptr;
}
+// rename(src_name, dst_name)
+// Renames src_name to dst_name. It automatically creates the necessary directories for dst_name.
+// Example: rename("system/app/Hangouts/Hangouts.apk", "system/priv-app/Hangouts/Hangouts.apk")
Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
if (argc != 2) {
return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);