Sha256: 943be2e71134ddffd86289c88131b1808acd660cdb762c03ac92dce5f49b9c7f
Contents?: true
Size: 585 Bytes
Versions: 1
Compression:
Stored size: 585 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' THIS_FILE = Pathname.new(__FILE__).realpath lib = THIS_FILE.dirname.parent + 'lib' if lib.directory? lib_path = lib.to_s $LOAD_PATH.unshift lib_path if !$LOAD_PATH.include? lib_path end require 'docker/release/runner' tag = ARGV[0] # Demand correct invocation, one argument only for tag, clean git, changelog if tag.nil? abort "USAGE: #{File.basename($0)} [TAG] TAG: tag to deploy or create on current commit Incorrect number of arguments given." end deployment = Docker::Release::Runner.new(tag) deployment.run
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
docker-eb-deploy-0.1.1 | bin/docker-release |