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 57dfb50 commit d622ed7Copy full SHA for d622ed7
lib/itamae/resource/file.rb
@@ -214,7 +214,9 @@ def send_tempfile
214
215
if backend.is_a?(Itamae::Backend::Docker)
216
run_command(["mkdir", @temppath])
217
+ ENV["SOURCE_DATE_EPOCH"] = Time.now.to_i.to_s # TODO: workaround for rubygems v3.6.7
218
backend.send_file(src, @temppath, user: attributes.user)
219
+ ENV["SOURCE_DATE_EPOCH"] = nil
220
@temppath = ::File.join(@temppath, ::File.basename(src))
221
else
222
run_command(["touch", @temppath])
0 commit comments