lib/fig/command/action/run_command_line.rb in fig-0.1.71 vs lib/fig/command/action/run_command_line.rb in fig-0.1.73
- old
+ new
@@ -15,10 +15,14 @@
def descriptor_requirement()
return nil
end
+ def modifies_repository?()
+ return false
+ end
+
def load_base_package?()
return true
end
def register_base_package?()
@@ -33,13 +37,17 @@
return true
end
def configure(options)
@command_line = options.shell_command
+
+ return
end
def execute()
@execution_context.environment.execute_shell(@command_line) do
|command| @execution_context.operating_system.shell_exec command
end
+
+ return EXIT_SUCCESS
end
end