Ticket #4257: 4257.patch

File 4257.patch, 2.4 KB (added by Tobiasz Cudnik, 15 years ago)
  • _dev/langtool/langtool.sh

     
    1 #!/bin/bash
     1#!/usr/bin/env bash
    22
    33# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
    44# For licensing, see LICENSE.html or http://ckeditor.com/license
    55
    66# Checks translation files in given directory.
    77
     8if [ -L $0 ] ; then
     9    DIR=$(dirname $(readlink -f $0)) ;
     10else
     11    DIR=$(dirname $0) ;
     12fi ;
     13
     14pushd $DIR
    815java -jar langtool/langtool.jar ../../_source/lang
     16popd
  • _dev/releaser/release.sh

     
    1 #!/bin/bash
     1#!/usr/bin/env bash
    22
    33# Copyright (c) 2003-2009, Frederico Caldeira Knabben. All rights reserved.
    44# For licensing, see LICENSE.html or http://ckeditor.com/license
    55
     6if [ -L $0 ] ; then
     7    DIR=$(dirname $(readlink -f $0)) ;
     8else
     9    DIR=$(dirname $0) ;
     10fi ;
     11
     12pushd $DIR
    613java -jar ckreleaser/ckreleaser.jar ckreleaser.release ../.. release "3.0 SVN" ckeditor_3.0_svn
     14popd
  • _dev/jslint/lint.sh

     
     1#!/usr/bin/env bash
     2
    13#
    24# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
    35# For licensing, see LICENSE.html or http://ckeditor.com/license
     
    79# otherwise it simply outputs it.
    810#
    911
     12if [ -L $0 ] ; then
     13    DIR=$(dirname $(readlink -f $0)) ;
     14else
     15    DIR=$(dirname $0) ;
     16fi ;
     17
     18pushd $DIR
    1019if [ "$1" = "" ]
    1120then
    1221        ../_thirdparty/jsl/jsl -conf lint.conf -nofilelisting -nologo
     
    1625        echo
    1726        echo Process completed.
    1827fi
     28popd
  • _dev/packager/package.sh

     
    1 #!/bin/bash
     1#!/usr/bin/env bash
    22
    33# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
    44# For licensing, see LICENSE.html or http://ckeditor.com/license
    55
     6if [ -L $0 ] ; then
     7    DIR=$(dirname $(readlink -f $0)) ;
     8else
     9    DIR=$(dirname $0) ;
     10fi ;
     11
     12pushd $DIR
    613java -jar ckpackager/ckpackager.jar ../../ckeditor.pack
     14popd
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy