make it possible to call DSL script

This commit is contained in:
Artur Gurgul1 2025-08-06 17:49:36 +02:00
parent 2578cd7a6d
commit 9c77ae9d2c
2 changed files with 75 additions and 0 deletions

View file

@ -56,6 +56,10 @@ when :make
puts "making..."
require 'make'
Make.command(options)
when :execute
puts "Ececuting: #{options.name}"
require 'execute'
Execute.file(options)
when :goto
Dir.chdir(ENV["DAT_ROOT"])
when :vm