#!/usr/bin/env ruby

require "dotenv"

begin
  Dotenv.load!
rescue Errno::ENOENT => e
  warn e.message
  exit 1
else
  exec *ARGV
end
