OSDN Git Service

postinst: Update comment to match implementation example.
authorAlex Deymo <deymo@google.com>
Fri, 10 Jun 2016 01:09:43 +0000 (18:09 -0700)
committerAlex Deymo <deymo@google.com>
Fri, 10 Jun 2016 01:10:02 +0000 (18:10 -0700)
"set_progress" should be "global_progress" in the documentation as the
example shows.

Bug: 29223204
TEST=None

Change-Id: I01b2abb2ba500941e591515217533150ef05dd97

postinst/postinst.sh

index 5ab2021..5bbcf9c 100644 (file)
@@ -53,7 +53,7 @@ status_fd="$2"
 my_dir=$(dirname "$0")
 
 # We can notify the updater of the progress of our program by writing to the
-# status file descriptor "set_progress <frac>\n".
+# status file descriptor "global_progress <frac>\n".
 print -u${status_fd} "global_progress 0"
 
 echo "The output of this program will show up in the logs." >&2