Sha256: 3071dcd6f9d9e321847254f6992eb065330e6e2b2a37753894c62e7787a6064d

Contents?: true

Size: 427 Bytes

Versions: 2

Compression:

Stored size: 427 Bytes

Contents

#!/bin/sh

# Copyright: 2015 Masatake YAMATO
# License: GPL-2

CTAGS=$1
BUILD_SUBDIR=$3
stderr_tmp=${BUILD_SUBDIR}/stderr-actual.txt.tmp

${CTAGS} --options=NONE -o - --language-force=CTagsSelfTest --verbose input.cst \
	 2> ${stderr_tmp}

# externalSortTags invokes sort command, and it is logged to stderr.
# Delete the line for the comparison.
sed -e '/^system ("sort -u")$/d' < ${stderr_tmp} 1>&2
rm ${stderr_tmp}

exit $?

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ctags.rb-1.1.4 ext/vendor/ctags/Tmain/broken-tagname.d/run.sh
ctags.rb-1.1.3 ext/vendor/ctags/Tmain/broken-tagname.d/run.sh