Skip to content

Commit e226be4

Browse files
Fix AutoRest path.
1 parent 2c87195 commit e226be4

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.6.2 Released on 2019-04-22
3+
## 0.6.3 Released on 2019-04-22
44

55
* Fixed autorest path.
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/oad",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"author": {
55
"name": "Microsoft Corporation",
66
"email": "[email protected]",

src/lib/validators/openApiDiff.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ export class OpenApiDiff {
141141
{
142142

143143
const result = path.join(__dirname, "..", "..", "..", "..", "..", "autorest", "app.js")
144-
console.log(result)
145144
if (fs.existsSync(result)) {
146145
return `node ${result}`
147146
}
@@ -150,7 +149,6 @@ export class OpenApiDiff {
150149
// Try to find autorest in `node-modules`
151150
{
152151
const result = path.resolve("node_modules/.bin/autorest")
153-
console.log(result)
154152
if (fs.existsSync(result)) {
155153
return result
156154
}

0 commit comments

Comments
 (0)