Commit 6defcdb5 authored by garykac@chromium.org's avatar garykac@chromium.org

[Chromoting] Remove check for too many args from signing script.

Purpose of this change is to help future-proof the script. Since old versions
of this script may be run when signing old builds, removing this check for
too many args allows us to add new params on the calling side without breaking
old builds.

BUG=None
TEST=None
Review URL: https://chromiumcodereview.appspot.com/10826076

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149091 0039d316-1c4b-4281-b951-d872f2087c98
parent 966baadf
...@@ -204,7 +204,7 @@ main() { ...@@ -204,7 +204,7 @@ main() {
cleanup cleanup
} }
if [[ ${#} < 4 || ${#} > 5 ]]; then if [[ ${#} < 4 ]]; then
usage usage
exit 1 exit 1
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment