@@ -35,7 +35,7 @@ export async function getRepositories(): Promise<string[] | undefined> {
3535 const quickpick = await window . showQuickPick < RepoListQuickPickItem > (
3636 quickPickItems ,
3737 {
38- placeHolder : 'Select a repository list. You can define repository lists in the `codeQL.remoteRepositoryLists ` setting.' ,
38+ placeHolder : 'Select a repository list. You can define repository lists in the `codeQL.remoteQueries.repositoryLists ` setting.' ,
3939 ignoreFocusOut : true ,
4040 } ) ;
4141 if ( quickpick ?. repoList . length ) {
@@ -56,7 +56,7 @@ export async function getRepositories(): Promise<string[] | undefined> {
5656 const remoteRepo = await window . showInputBox ( {
5757 title : 'Enter a GitHub repository in the format <owner>/<repo> (e.g. github/codeql)' ,
5858 placeHolder : '<owner>/<repo>' ,
59- prompt : 'Tip: you can save frequently used repositories in the `codeql.remoteRepositoryLists ` setting' ,
59+ prompt : 'Tip: you can save frequently used repositories in the `codeQL.remoteQueries.repositoryLists ` setting' ,
6060 ignoreFocusOut : true ,
6161 } ) ;
6262 if ( ! remoteRepo ) {
@@ -85,7 +85,7 @@ export async function runRemoteQuery(cliServer: cli.CodeQLCliServer, credentials
8585 let repositories : string [ ] | undefined ;
8686
8787 // If the user has an explicit `.repositories` file, use that.
88- // Otherwise, prompt user to select repositories from the `codeQL.remoteRepositoryLists ` setting.
88+ // Otherwise, prompt user to select repositories from the `codeQL.remoteQueries.repositoryLists ` setting.
8989 if ( await fs . pathExists ( repositoriesFile ) ) {
9090 void logger . log ( `Found '${ repositoriesFile } '. Using information from that file to run ${ queryFile } .` ) ;
9191
0 commit comments