Sha256: d715452f2698c23d81f85845c8fc5e9f3fd7170680d2e7cd88b759bff42def83
Contents?: true
Size: 477 Bytes
Versions: 8
Compression:
Stored size: 477 Bytes
Contents
module Fontist module Import module Helpers module SystemHelper class << self def run(command) Fontist.ui.say("Run `#{command}`") if Fontist.debug? result = `#{command}` unless $CHILD_STATUS.to_i.zero? raise Errors::BinaryCallError, "Failed to run #{command}, status: #{$CHILD_STATUS}" end result end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems