Oops, the string passed to `awk` isn't the same as a shell command.

Fixes #808.
diff --git a/nvm.sh b/nvm.sh
index d5a62f7..dc6ade4 100755
--- a/nvm.sh
+++ b/nvm.sh
@@ -317,7 +317,7 @@
 }
 
 nvm_normalize_version() {
-  echo "${1#v}" | command awk -F. '{ command printf("%d%06d%06d\n", $1,$2,$3); }'
+  echo "${1#v}" | command awk -F. '{ printf("%d%06d%06d\n", $1,$2,$3); }'
 }
 
 nvm_ensure_version_prefix() {