2
1
mirror of https://github.com/kdabir/has.git synced 2024-09-18 17:01:29 +02:00

Merge pull request #4 from dexterous/master

Make build artifacts executable
This commit is contained in:
Kunal Dabir 2014-04-08 21:49:48 +05:30
commit 3af5cc3cd0
10 changed files with 9 additions and 9 deletions

0
bin/all/dq.sh Normal file → Executable file
View File

0
bin/clojure_dev/dq.sh Normal file → Executable file
View File

0
bin/core/dq.sh Normal file → Executable file
View File

0
bin/db/dq.sh Normal file → Executable file
View File

0
bin/frontend_dev/dq.sh Normal file → Executable file
View File

0
bin/groovy_dev/dq.sh Normal file → Executable file
View File

0
bin/java_dev/dq.sh Normal file → Executable file
View File

0
bin/ruby_dev/dq.sh Normal file → Executable file
View File

0
bin/scala_dev/dq.sh Normal file → Executable file
View File

View File

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
ruby build.rb groovy_dev > bin/groovy_dev/dq.sh
ruby build.rb ruby_dev > bin/ruby_dev/dq.sh rm -rf ./bin
ruby build.rb scala_dev > bin/scala_dev/dq.sh
ruby build.rb java_dev > bin/java_dev/dq.sh for group in groovy_dev ruby_dev scala_dev java_dev db core clojure_dev all frontend_dev; do
ruby build.rb db > bin/db/dq.sh mkdir -p ./bin/$group/
ruby build.rb core > bin/core/dq.sh ruby build.rb $group > ./bin/$group/dq.sh
ruby build.rb clojure_dev > bin/clojure_dev/dq.sh done
ruby build.rb all > bin/all/dq.sh
ruby build.rb frontend_dev > bin/frontend_dev/dq.sh find bin -type f -name \*.sh -exec chmod u+x {} +