.sh extension for included files

Motivated by Google's shell coding standards. This makes sense for
non-executable files.
env
Mike Gerwitz 2014-06-10 22:00:18 -04:00
parent 58a3f75d05
commit 1e8279ffc3
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
7 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@
[ -z $__INC_EXPECT_CORE ] || return [ -z $__INC_EXPECT_CORE ] || return
__INC_EXPECT_CORE=1 __INC_EXPECT_CORE=1
source expect/output source expect/output.sh
## ##

View File

@ -22,7 +22,7 @@
[ -z $__INC_EXPECT_OUTPUT ] || return [ -z $__INC_EXPECT_OUTPUT ] || return
__INC_EXPECT_OUTPUT=1 __INC_EXPECT_OUTPUT=1
source util source util.sh
# reserved for our uses # reserved for our uses
exec 99<>/dev/null exec 99<>/dev/null

View File

@ -19,7 +19,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
## ##
source spec source spec.sh
declare -r tcase="${1?Missing test case path}" declare -r tcase="${1?Missing test case path}"

View File

@ -29,8 +29,8 @@
[ -z $__INC_SPEC ] || return [ -z $__INC_SPEC ] || return
__INC_SPEC=1 __INC_SPEC=1
source specstack source specstack.sh
source expect-core source expect.sh
# number of internal arguments before remainder clause # number of internal arguments before remainder clause
declare -ir __SHIFTN=3 declare -ir __SHIFTN=3