Skip to content

Commit b96e455

Browse files
authored
Backport: follow-up backport #803 (#822)
It fixes "other_args: unbound variable" error. It was merged unexpectedly because of conflicting with backport. Signed-off-by: Kentaro Hayashi <hayashi@clear-code.com>
1 parent d7bf343 commit b96e455

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fluent-package/apt/systemd-test/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ echo "::endgroup::"
2525
echo "::group::Run test: setup $image"
2626
sudo incus exec target -- $dir/setup.sh
2727
echo "::endgroup::"
28-
echo "::group::Run test: $test_file $other_args on $image"
29-
sudo incus exec target -- $dir/$test_file $other_args
28+
echo "::group::Run test: $test_file $apt_repo_type on $image"
29+
sudo incus exec target -- $dir/$test_file $apt_repo_type
3030
echo "::endgroup::"
3131
echo "::group::Run test: cleanup $image"
3232
sudo incus stop target

fluent-package/yum/systemd-test/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ echo "::group::Run test: configure $image"
2121
sudo incus config device add target host disk source=$PWD path=/host
2222
sudo incus list
2323
echo "::endgroup::"
24-
echo "::group::Run test: $test_file $other_args on $image"
25-
sudo incus exec target -- $dir/$test_file $other_args
24+
echo "::group::Run test: $test_file $yum_repo_type on $image"
25+
sudo incus exec target -- $dir/$test_file $yum_repo_type
2626
echo "::endgroup::"
2727
echo "::group::Run test: cleanup $image"
2828
sudo incus stop target

0 commit comments

Comments
 (0)