10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
function upload(){
|
|
./gradlew $1:clean $1:uploadArchives
|
|
if [ $? -ne 0 ];then exit; fi
|
|
}
|
|
|
|
for module in `cat modules.txt`;
|
|
do
|
|
upload $module
|
|
done |