#!/usr/bin/env ruby # frozen_string_literal: true begin $LOAD_PATH.unshift File.expand_path(File.join(__dir__, "..", "lib")) require "deps" require "mux_tf" MuxTf::Cli.run(:current, ARGV) rescue Interrupt warn "\nInterrupted" exit 1 rescue Exception => e # rubocop:disable Lint/RescueException warn e.full_message warn "" $stdin.gets exit 1 end