Skip to content

Commit

Permalink
Merge pull request #10552 from swagger-api/fix-tmpdir
Browse files Browse the repository at this point in the history
fix hardcoded tmp dir in maven sys prop for tests
  • Loading branch information
frantuma authored Nov 9, 2020
2 parents c3a5b23 + 835d8ea commit 38e4784
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/swagger-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<configuration>
<systemPropertyVariables>
<java.security.policy>${java.security.policy}</java.security.policy>
<generatorWriteDirs>/tmp,.</generatorWriteDirs>
<generatorWriteDirs>${java.io.tmpdir},.</generatorWriteDirs>
</systemPropertyVariables>
</configuration>
</plugin>
Expand All @@ -56,7 +56,7 @@
<configuration>
<systemPropertyVariables>
<java.security.policy>${java.security.policy}</java.security.policy>
<generatorWriteDirs>/tmp,.</generatorWriteDirs>
<generatorWriteDirs>${java.io.tmpdir},.</generatorWriteDirs>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down

0 comments on commit 38e4784

Please sign in to comment.