Skip to content

Commit 74b4faa

Browse files
committed
testsuite: t9000-system: replace non-POSIX source command
Problem: The use of `source` in t9000-system.t is non-POSIX and thus not supported by POSIX sh. Replace `source` with the POSIX `.`.
1 parent dd1b2f9 commit 74b4faa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t9000-system.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ alias test_expect_success='expect_success_wrap'
6565
#
6666
for testscript in ${FLUX_SOURCE_DIR}/t/system/${T9000_SYSTEM_GLOB}; do
6767
TEST_LABEL="$(basename $testscript)"
68-
source $testscript
68+
. $testscript
6969
done
7070

7171
test_done

0 commit comments

Comments
 (0)