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

11 lines
249 B
Bash
Executable File

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