We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abe20d commit 289211dCopy full SHA for 289211d
src/main/groovy/com/rundeck/plugins/ansible/util/AnsibleUtil.java
@@ -124,7 +124,7 @@ public static String randomString(){
124
125
public static String getCustomTmpPathDir(Framework framework){
126
String customTmpDir = framework.getPropertyLookup().getProperty("framework.tmp.dir");
127
- if (customTmpDir.isEmpty()) {
+ if (customTmpDir == null || customTmpDir.isEmpty()) {
128
customTmpDir = System.getProperty("java.io.tmpdir");
129
}
130
return customTmpDir;
0 commit comments