lr - trigger global build tasks

This commit is contained in:
Adolfo Perez Alvarez 2022-09-06 16:51:46 +02:00
parent 7d2f340758
commit 519752ecd1
1 changed files with 18 additions and 0 deletions

18
lr Normal file
View File

@ -0,0 +1,18 @@
function lr
{
(( $# != 1 )) && return 64
case $1 in
all)
(jr && ant all)
;;
bl)
(jr && modules/apps/portal-language/portal-language-all && gw buildLang)
;;
sf|fs)
(jr && cd portal-impl && ant format-source)
;;
*)
return 64
;;
esac
}