fig icon indicating copy to clipboard operation
fig copied to clipboard

Allow per config retrieve statements.

Open joewalnes opened this issue 14 years ago • 3 comments

I'd like to do this:

config build
  retrieve CLASSPATH->lib
  include some/stuff
end

config runtime
  retrieve CLASSPATH->dist/lib
  include other/stuff
end

joewalnes avatar Apr 10 '10 12:04 joewalnes

Is the goal to be able to copy the same files to different places? Or to control when the retrieve happens for different files?

mfoemmel avatar Apr 10 '10 21:04 mfoemmel

The latter - I want to put dependencies for different configs in different directories.

joewalnes avatar Apr 11 '10 02:04 joewalnes

Another example (from duplicate issue #55):

config production retrieve CLASSPATH->deployment/jars include foo/1 end

config test retrieve CLASSPATH->tmp/jars include testing-framework/1 end

walquis avatar Apr 13 '12 17:04 walquis