File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ program
45
45
. allowUnknownOption ( true )
46
46
47
47
setSharedArgs ( program )
48
- program . action ( ( process_name ) => ( subprocessName = process_name ) ) . parse ( process . argv )
48
+ program . action ( process_name => ( subprocessName = process_name ) ) . parse ( process . argv )
49
49
50
50
// The dynamic nature of the program means typecasting a lot
51
51
// use this to work with dynamic properties
@@ -55,7 +55,7 @@ if (process.env["DANGER_VERBOSE"] || app.verbose) {
55
55
global . verbose = true
56
56
}
57
57
58
- getRuntimeCISource ( app ) . then ( ( source ) => {
58
+ getRuntimeCISource ( app ) . then ( source => {
59
59
// This does not set a failing exit code
60
60
if ( source && ! source . isPR ) {
61
61
console . log ( "Skipping Danger due to this run not executing on a PR." )
@@ -73,7 +73,7 @@ getRuntimeCISource(app).then((source) => {
73
73
}
74
74
75
75
if ( platform ) {
76
- jsonDSLGenerator ( platform , source , app ) . then ( ( dangerJSONDSL ) => {
76
+ jsonDSLGenerator ( platform , source , app ) . then ( dangerJSONDSL => {
77
77
if ( ! subprocessName ) {
78
78
// Just pipe it out to the CLI
79
79
const processInput = prepareDangerDSL ( dangerJSONDSL )
You can’t perform that action at this time.
0 commit comments