Skip to content

Commit ed8981e

Browse files
committed
Remove non-portable source commands
`source(1)` is a bashism and is equivalent to the portable `.(1)`, but as each commond is run in a new shell, spawning a shell to source a file and exit is at best noop. Some SUT used by acceptance tests do not use bash(1) as the default shell, which cause CI failures because `source(1)` is not a valid command. Because we set variables in profile files, assume they are sourced during shell startup will be available to next spawned shells.
1 parent 919fc9b commit ed8981e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

spec/spec_helper_acceptance_local.rb

-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ def export_locales(locale)
2727
LitmusHelper.instance.run_shell("echo export LANGUAGE=#{locale} >> /etc/profile.d/my-custom.lang.sh")
2828
LitmusHelper.instance.run_shell('echo export LC_COLLATE=C >> /etc/profile.d/my-custom.lang.sh')
2929
LitmusHelper.instance.run_shell("echo export LC_CTYPE=#{locale} >> /etc/profile.d/my-custom.lang.sh")
30-
LitmusHelper.instance.run_shell('source /etc/profile.d/my-custom.lang.sh')
3130
LitmusHelper.instance.run_shell('echo export LC_ALL="C" >> ~/.bashrc')
32-
LitmusHelper.instance.run_shell('source ~/.bashrc')
3331
end
3432

3533
def pre_run

0 commit comments

Comments
 (0)