User: curvirgo Date: 05/12/18 06:29:08 Modified: /ja/www/documents/develop/ jabuild.function
Log: The from option is added. File Changes: Directory: /ja/www/documents/develop/ ===================================== File [changed]: jabuild.function Url: http://ja.openoffice.org/source/browse/ja/www/documents/develop/jabuild.function?r1=1.5&r2=1.6 Delta lines: +13 -4 -------------------- --- jabuild.function 17 Dec 2005 18:55:50 -0000 1.5 +++ jabuild.function 18 Dec 2005 14:29:05 -0000 1.6 @@ -12,6 +12,7 @@ OPTION: --debug Debug mode --download=[CVS TAG] Download from CVS Repository and Build + --from=[Project] Restart from specified project --pack Packaging only --help Print this help EOF @@ -39,6 +40,14 @@ exit } DOWNLOAD_SOURCE=Yes + ;; + --from=*) + RESTART_PROJECT=`echo ${opt} | sed 's/--from=//'` + [ x${RESTART_PROJECT} = x ] && { + PrintMessage "Project is not specified !!" + exit + } + RESTART_BUILD=Yes ;; --pack) PACKMODE=Yes --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
