add possibility to create package
This commit is contained in:
parent
a7807f089c
commit
ed7fc9aa7f
6 changed files with 104 additions and 10 deletions
8
bin/dat
8
bin/dat
|
@ -56,6 +56,14 @@ when :make
|
|||
puts "making..."
|
||||
require 'make'
|
||||
Make.command(options)
|
||||
when :pkgmake
|
||||
puts "Making package #{options.name}"
|
||||
require 'make'
|
||||
Make.create_package(options)
|
||||
when :pkginstall
|
||||
require 'make'
|
||||
# TODO: wrong naming it is not name, but path
|
||||
Make.install_package(options.name)
|
||||
when :execute
|
||||
puts "Ececuting: #{options.name}"
|
||||
require 'execute'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue