Sha256: c82b6b1afc3e0cdb1e08ba99988b668d7e873d698508a91bd07666e3d266824d

Contents?: true

Size: 299 Bytes

Versions: 1

Compression:

Stored size: 299 Bytes

Contents

#! /usr/bin/env ruby

# p ARGV
# p Dir['*/.hg'].map { |path| File.absolute_path File.dirname path }

parent_dir = Dir.pwd

Dir['*/.hg'].map { |path| File.absolute_path File.dirname path }.each do |path|
  Dir.chdir path
  puts path
  system "hg #{ARGV.join ' '}"
  puts ''
end

Dir.chdir parent_dir

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hgtk-0.1.0 bin/hgtk