Skip to content

Commit acbd5c6

Browse files
mgmt, fix autorest.core to 3.8.1, latest seems not work (Azure#28015)
1 parent ffd6456 commit acbd5c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/resourcemanager/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ async function defaultInfo() {
3535
});
3636

3737
console.log("--autorest");
38-
console.log("\tThe version of AutoRest Core. E.g. 3.0.6368, or the location of AutoRest repo, e.g. E:\\repo\\autorest");
38+
console.log("\tThe version of AutoRest Core. E.g. 3.8.1, or the location of AutoRest repo, e.g. E:\\repo\\autorest");
3939

4040
console.log("--autorest-java");
4141
console.log("\tPath to an autorest.java generator to pass as a --use argument to AutoRest.");
4242
console.log("\tUsually you'll only need to provide this and not a --autorest argument in order to work on Java code generation.");
43-
console.log("\tSee https://github.com/Azure/autorest/blob/master/docs/developer/autorest-extension.md");
43+
console.log("\tSee https://github.com/Azure/autorest/blob/main/docs/developer/writing-an-extension.md");
4444

4545
console.log("--debug");
4646
console.log("\tFlag that allows you to attach a debugger to the autorest.java generator.");
@@ -55,7 +55,7 @@ async function defaultInfo() {
5555

5656
const maxParallelism = parseInt(args['parallel'], 10) || os.cpus().length;
5757
var projects = args['projects'];
58-
var autoRestVersion = 'latest'; // default
58+
var autoRestVersion = '3.8.1'; // default
5959
if (args['autorest'] !== undefined) {
6060
autoRestVersion = args['autorest'];
6161
}

0 commit comments

Comments
 (0)