From 425337fc29b00cbc893892cacc4b2302b26c6cc1 Mon Sep 17 00:00:00 2001 From: Karl Rister Date: Sun, 3 Nov 2024 15:26:03 -0600 Subject: [PATCH] fix the listing of moved crucible installs in tests/test-installer --- tests/test-installer | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-installer b/tests/test-installer index 80e01da..3a15858 100755 --- a/tests/test-installer +++ b/tests/test-installer @@ -137,7 +137,7 @@ for arg_mode in client-server engine; do --${arg_mode}-auth-file /tmp/auth-file.json \ --verbose test "$?" = "0" || exit 1 - ls /opt/crucible-moved* || exit 1 + ls -ld /opt/crucible-moved* || exit 1 stop_test done @@ -153,7 +153,7 @@ for arg_mode in client-server engine; do --${arg_mode}-registry myregistry.io/crucible \ --verbose test "$?" = "0" || exit 1 - ls /opt/crucible-moved* || exit 1 + ls -ld /opt/crucible-moved* || exit 1 stop_test done @@ -192,7 +192,7 @@ for arg_mode in client-server engine; do --${arg_mode}-auth-file /tmp/auth-file.json \ --verbose test "$?" = "0" || exit 1 - ls /opt/crucible-moved* || exit 1 + ls -ld /opt/crucible-moved* || exit 1 stop_test done done