iron_worker_ruby_ng
iron_worker_ruby_ng copied to clipboard
Treat Symlinks as files for uploading
Hi, how difficult would it be to allow iron_worker uploading of actual files if they are soft-linked ?
for example I have a repository with 2 folders: 'web' and 'crawler' the crawler app is just a ruby app and it takes some files from the web rails application.
cheers.
You can just put the path to whichever file you want in your .worker file. eg:
file '../web/myfile.rb'
that's a good idea. thanks @treeder I will try that.