From ddd18bfa902e89b820b3fef1365984dcb641e5cb Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sun, 8 Oct 2023 16:10:42 -0700 Subject: [PATCH] copy_buildsync: fix check typo Signed-off-by: Robin H. Johnson --- scripts/copy_buildsync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh index c313af72..59f08f0a 100755 --- a/scripts/copy_buildsync.sh +++ b/scripts/copy_buildsync.sh @@ -209,7 +209,7 @@ process_arch() { # # Link the files for a given variant into a current-${v}/ directory. # If it's an old link, remove to convert to directory. - if test -l "current-$v" ; then rm "current-$v" ; fi + if test -L "current-$v" ; then rm "current-$v" ; fi mkdir -p "current-$v" # Remove old links in the directory.