1
0
mirror of synced 2026-05-22 18:53:15 +00:00

feat: add response param to route.fulfill (#797)

This commit is contained in:
Yury Semikhatsky
2022-01-28 08:38:24 -08:00
committed by GitHub
parent 17a4143a83
commit 119700a678
20 changed files with 195 additions and 58 deletions
@@ -66,8 +66,8 @@ public abstract class Driver {
}
public static void setRequiredEnvironmentVariables(ProcessBuilder pb) {
pb.environment().put("PW_CLI_TARGET_LANG", "java");
pb.environment().put("PW_CLI_TARGET_LANG_VERSION", getMajorJavaVersion());
pb.environment().put("PW_LANG_NAME", "java");
pb.environment().put("PW_LANG_NAME_VERSION", getMajorJavaVersion());
String version = Driver.class.getPackage().getImplementationVersion();
if (version != null) {
pb.environment().put("PW_CLI_DISPLAY_VERSION", version);