From ec18c5551838019e3c59a88f26f784748ad15101 Mon Sep 17 00:00:00 2001 From: "Stephen Weatherford (MSFT)" Date: Fri, 23 Oct 2020 15:44:40 -0700 Subject: [PATCH] Fix paths in README to use main branch (#1070) --- README.md | 2 +- gulpfile.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 651b59398..e3f064473 100644 --- a/README.md +++ b/README.md @@ -260,7 +260,7 @@ There are several ways you can contribute to our [repo](https://github.com/Micro - **Ideas, feature requests, and bugs**: We are open to all ideas and we want to get rid of bugs! Use the [Issues](https://github.com/Microsoft/vscode-azurearmtools/issues) section to report a new issue, provide your ideas or contribute to existing threads. - **Documentation**: Found a typo or strangely worded sentences? Submit a PR! - **Snippets**: Have a fix for a snippet or a new snippet idea? File an [Issue](https://github.com/Microsoft/vscode-azurearmtools/issues) or submit a PR! - - See [our snippets file for ARM templates](https://github.com/microsoft/vscode-azurearmtools/blob/master/assets/armsnippets.jsonc) + - See [our snippets file for ARM templates](https://github.com/microsoft/vscode-azurearmtools/blob/main/assets/armsnippets.jsonc) - **Code**: Contribute bug fixes, features or design changes: - Clone the repository locally and open in VS Code. - Install [TSLint for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=eg2.tslint). diff --git a/gulpfile.ts b/gulpfile.ts index 9fbe18778..14d78a591 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -279,7 +279,7 @@ async function packageVsix(): Promise { try { console.log(`Running vsce package in staging folder ${stagingFolder}`); shelljs.cd(stagingFolder); - executeInShell('vsce package'); + executeInShell('vsce package --githubBranch main'); } finally { shelljs.cd(__dirname); }