Reputation: 6289
I am using the dist
command in Play to distribute an application. I would like to access the start script without unzipping the distribution.
Is there a way to prevent the command from zipping up the distribution?
Upvotes: 0
Views: 48
Reputation: 12850
Run play stage
.
In 2.2, this is identical to play dist
except it doesn't zip. In 2.1 and earlier, it generates a slightly different script and directory layout.
Upvotes: 2
Reputation: 55798
No, there is no such possibility before Play 2.2, all you can do is creating a shell script, or i.e. ant task which will dist and then unzip it. If somebody would ask - I don't like this as well ;)
Upvotes: 1