diff --git a/provision.drush.inc b/provision.drush.inc
index 0d58fb0a9734ebd4c34375f08364954da596ab37..cad33a016c2835ffa6c5e032f8710ad102b4a61f 100644
--- a/provision.drush.inc
+++ b/provision.drush.inc
@@ -131,6 +131,8 @@ function provision_drush_command() {
   $items['provision-backup'] = array(
     'optional arguments' => array('backup-file' => dt('The file to save the backup to. This will be a gzipped tarball.')),
     'description' => dt('Generate a back up for the site.'),
+    'options' => array(
+      'profile' => dt('The Drupal profile to use.')),
     'examples' => array(
       'drush @site provision-backup' => 'Back up the site as defined by the site Drush alias generated with provision-save.',
     ),
@@ -225,6 +227,8 @@ function provision_drush_command() {
     'arguments' => array(
       '@new_site' => dt('The Drush alias of the new site as generated by provision-save.'),
       '@platform_name' => dt('The Drush alias of the platform to clone the site onto.')),
+    'options' => array(
+      'profile' => dt('The Drupal profile to use.')),
     'examples' => array(
       'drush @site provision-clone @new_site @platform_name' => 'Clone the original site to the new site on a platform',
     ),