Skip to content

Commit

Permalink
fixup! Run check.rb on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Mar 25, 2024
1 parent ac00383 commit 077a65d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions client/rb_client/check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,3 @@
# Check environment variables
puts "Environment variables:"
puts ENV.to_h

# Check existence and content of important files
files_to_check = [
"/path/to/file1",
"/path/to/file2",
# add more file paths here
]
files_to_check.each do |file|
if File.exist?(file)
puts "Content of #{file}:"
puts File.read(file)
else
puts "File #{file} does not exist"
end
end

0 comments on commit 077a65d

Please sign in to comment.