diff --git a/src/Provision/Command/SaveCommand.php b/src/Provision/Command/SaveCommand.php index c05d9e146048ad7ba048d84cc0d03f9a3e344f30..a763ee41b69cfc89205b0f1775a7c295aad169ad 100644 --- a/src/Provision/Command/SaveCommand.php +++ b/src/Provision/Command/SaveCommand.php @@ -327,19 +327,6 @@ class SaveCommand extends Command if (empty($this->input->getOption('context_type'))) { $type_options = Context::getContextTypeOptions(); - - // Check for platforms. If none. don't allow sites. - $platform_exists = FALSE; - foreach ($options as $name => $type_and_name) { - if (strpos($type_and_name, 'platform') === 0) { - $platform_exists = TRUE; - } - } - - if (!$platform_exists) { - unset($type_options['site']); - $this->io->block("You cannot add a site until you have at least one platform."); - } $context_type = $this->io->choice('Context Type?', $type_options); } else {