Class: Makit::Cli::MakeBuildCommand

Inherits:
Clamp::Command
  • Object
show all
Defined in:
lib/makit/cli/build_commands.rb

Overview

Build project artifacts

Instance Method Summary collapse

Instance Method Details

#executeObject



45
46
47
48
49
50
51
52
53
# File 'lib/makit/cli/build_commands.rb', line 45

def execute
  if repository_url
    # Build specific repository
    build_repository(repository_url)
  else
    # No arguments - enumerate all tracked repositories and show latest commits
    enumerate_repositories
  end
end