copy_buildsync: fix check typo

Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
This commit is contained in:
Robin H. Johnson 2023-10-08 16:10:42 -07:00
parent 5ef7b638f1
commit ddd18bfa90
No known key found for this signature in database
GPG key ID: 19395F23C58826C4

View file

@ -209,7 +209,7 @@ process_arch() {
# #
# Link the files for a given variant into a current-${v}/ directory. # Link the files for a given variant into a current-${v}/ directory.
# If it's an old link, remove to convert to 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" mkdir -p "current-$v"
# Remove old links in the directory. # Remove old links in the directory.