Sha256: 3a5c3b8fc549f4532288f8488e92b22cc06659f66e3428bc82bff5b382306cdf

Contents?: true

Size: 259 Bytes

Versions: 1

Compression:

Stored size: 259 Bytes

Contents

#!/usr/bin/env ruby

require 'mill'

load Path.pwd / 'code' / 'site.rb'

begin
  case ARGV.shift
  when nil, 'make'
    $site.make
  when 'list'
    $site.list
  else
    raise "Unknown command: #{command}"
  end
rescue Mill::Error => e
  warn e
  exit(1)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mill-0.3 bin/mill