forked from shinmyung0/pullrequest-events-resource
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathin
executable file
·44 lines (35 loc) · 1020 Bytes
/
in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#! /usr/bin/env node
const {
getStdinAsJson,
getSourceConfig, outputVersionToFile
} = require('./common.js');
/*
* Main function for in script. Given a version will output
* under targetDir to pull_request file
*/
async function doIn() {
try {
if (process.argv.length != 3) {
throw new Error("No output directory specified on $1!")
}
// output directory
let targetDir = process.argv[2]
if (targetDir[targetDir.length - 1] != "/") {
targetDir += "/"
}
// get stdin and extract the .version
let rawJson = await getStdinAsJson()
let version = rawJson["version"]
if (!version) {
throw new Error("No version inside of stdin")
}
outputVersionToFile(targetDir, version)
// output the version to stdout
console.log(JSON.stringify({
version: version
}))
} catch (err) {
console.error(err)
}
}
doIn();