Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix: correctly return contructed envrionment variables. (#214)
  • Loading branch information
Eskibear authored Aug 31, 2018
commit f3561e2aadcb901023c8b257d7afaa2fa886c293
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ protected static String[] constructEnvironmentVariables(LaunchArguments launchAr
envVars[i++] = entry.getKey() + "=" + entry.getValue();
}
}
return null;
return envVars;
}

/**
Expand Down