This file is indexed.

/usr/share/quickly/templates/ubuntu-application/test/simple-bin.sh is in quickly-ubuntu-template 12.08.1-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
#!/bin/sh

## This test just checks that project_root/bin/project_name is lean and mean.  Don't overwhelm the user with boilerplate.

## Arbitrarily choose 75 lines as the cutoff

test $(wc -l "$TEST_SCRIPT_DIR/../project_root/bin/project_name" | cut -d' ' -f1) -le 75 && echo Success
# Success