From 35b5de548ca52feaf53868d2a31645c027137411 Mon Sep 17 00:00:00 2001 From: Tami Takamiya Date: Tue, 25 Jun 2024 11:06:39 -0400 Subject: [PATCH] Remove --readme-path flag from ovsx (#1406) --- tools/helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/helper b/tools/helper index 5d54d1301..2910049ec 100755 --- a/tools/helper +++ b/tools/helper @@ -64,7 +64,7 @@ def cli(): logging.error(msg) sys.exit(2) run(f"yarn run vsce publish {pre_release_arg} --skip-duplicate --packagePath {vsix_files[0]} --readme-path docs/README.md") - run(f"yarn run ovsx publish {pre_release_arg} --skip-duplicate {vsix_files[0]} --readme-path docs/README.md") + run(f"yarn run ovsx publish {pre_release_arg} --skip-duplicate {vsix_files[0]}") sys.exit() if opt.package: run("rm -f ./*.vsix")