Skip to content

Commit

Permalink
Fix vars stored in reproducible config
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys committed Jan 16, 2024
1 parent 6edef55 commit d951830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/odh/test/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@ private static boolean isWriteable(String var, String value) {
return !value.equals("null")
&& !var.equals(CONFIG_FILE_PATH_ENV)
&& !var.equals(USER_PATH)
&& !value.equals("USER");
&& !var.equals("USER");
}
}

0 comments on commit d951830

Please sign in to comment.