Repository: flex-falcon Updated Branches: refs/heads/feature/maven-migration ced01ed58 -> e4fa439cb
Added a cleanup section to clean eventually still existing directories from previous migrations Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/e4fa439c Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/e4fa439c Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/e4fa439c Branch: refs/heads/feature/maven-migration Commit: e4fa439cb6f2e72931f2df1859d7902371d29b94 Parents: ced01ed Author: Christofer Dutz <[email protected]> Authored: Sun Feb 21 20:33:26 2016 +0100 Committer: Christofer Dutz <[email protected]> Committed: Sun Feb 21 20:33:26 2016 +0100 ---------------------------------------------------------------------- migrate-to-maven.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e4fa439c/migrate-to-maven.sh ---------------------------------------------------------------------- diff --git a/migrate-to-maven.sh b/migrate-to-maven.sh index 3f0c317..6ffd683 100755 --- a/migrate-to-maven.sh +++ b/migrate-to-maven.sh @@ -1,12 +1,21 @@ #!/usr/bin/env bash ############################################# +## Clean up some zombie directories form +## previous conversions. +############################################# +rm -rf compiler/src/main +rm -rf compiler/src/test +rm -rf compiler.jx/src/main +rm -rf compiler.jx/src/test +rm -rf flex-compiler-oem/src/main + +############################################# ## Convert the flex-compiler-oem module ############################################# mkdir -p flex-compiler-oem/src/main/java git mv flex-compiler-oem/src/flex2 flex-compiler-oem/src/main/java git mv flex-compiler-oem/src/macromedia flex-compiler-oem/src/main/java -git add compiler/src/main ############################################# ## Convert the compiler module
