From 064d7accf570adcb4e7db185026e7372d70b7d68 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Mon, 6 Feb 2023 10:42:07 +0100 Subject: [PATCH] remove invalid option --- packages/core/strapi/bin/strapi.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/core/strapi/bin/strapi.js b/packages/core/strapi/bin/strapi.js index 35fce5be54..78d9b7ed55 100755 --- a/packages/core/strapi/bin/strapi.js +++ b/packages/core/strapi/bin/strapi.js @@ -287,9 +287,10 @@ program new Option('--from-token ', `Transfer token for the remote Strapi source`).hideHelp() // Hidden until pull feature is released ) .addOption( - new Option('--to ', `URL of the remote Strapi instance to send data to`) - .argParser(parseURL) - .required() + new Option( + '--to ', + `URL of the remote Strapi instance to send data to` + ).argParser(parseURL) ) .addOption(new Option('--to-token ', `Transfer token for the remote Strapi destination`)) .addOption(forceOption)