diff options
author | Egil Moeller <egil.moller@freecode.no> | 2010-03-25 18:05:39 +0100 |
---|---|---|
committer | Egil Moeller <egil.moller@freecode.no> | 2010-03-25 18:05:39 +0100 |
commit | e411a43b1b217e3d3f893bcbc0c23c6fd4ec0b6d (patch) | |
tree | f75d561a9c5b9e11b2f912444e26b7a07b717fae | |
parent | 5a3432ca87b054daa75c5bc46327a1ea41153177 (diff) | |
download | etherpad-e411a43b1b217e3d3f893bcbc0c23c6fd4ec0b6d.tar.gz etherpad-e411a43b1b217e3d3f893bcbc0c23c6fd4ec0b6d.tar.xz etherpad-e411a43b1b217e3d3f893bcbc0c23c6fd4ec0b6d.zip |
Bugfix for infrastructure/ace/bin/make to handle non-existent target directories, as git removes empty directories :(
-rwxr-xr-x | infrastructure/ace/bin/make | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/infrastructure/ace/bin/make b/infrastructure/ace/bin/make index 0a39d91..98a48f4 100755 --- a/infrastructure/ace/bin/make +++ b/infrastructure/ace/bin/make @@ -1,4 +1,6 @@ #!/bin/sh +mkdir -p ../../etherpad/src/etherpad/collab/ace +mkdir -p ../../etherpad/src/static/js exec scala -classpath lib/yuicompressor-2.4-appjet.jar:lib/rhino-js-1.7r1.jar $0 $@ !# |