We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tmp_root
I recently discovered
terraspace-bundler/lib/terraspace_bundler/mod/concerns/path_concern.rb
Line 9 in d320470
I worked around this by monkey-patching the method at the top of my Terrafile.
module TerraspaceBundler::Mod::Concerns module PathConcern def tmp_root "/tmp/terraspace_#{ENV['USER']}/bundler" end end end
@tongueroo Would this be an acceptable solution to submit has a PR, or perhaps a new ENV variable entirely would be more appropriate? eg.
def tmp_root ENV['TS_BUNDLER_TMP_DIR'] || '/tmp/terraspace/bundler' end
or maybe even...
def tmp_root ENV['TS_BUNDLER_TMP_DIR'] || "/tmp/terraspace_#{ENV['USER']}/bundler" end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I recently discovered
terraspace-bundler/lib/terraspace_bundler/mod/concerns/path_concern.rb
Line 9 in d320470
I worked around this by monkey-patching the method at the top of my Terrafile.
@tongueroo Would this be an acceptable solution to submit has a PR, or perhaps a new ENV variable entirely would be more appropriate?
eg.
or maybe even...
The text was updated successfully, but these errors were encountered: