diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2023-10-08 16:10:42 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2023-10-08 16:10:42 -0700 |
commit | ddd18bfa902e89b820b3fef1365984dcb641e5cb (patch) | |
tree | 948b9fa2ac1df604db82bac5abb3726d5ef71e5a /scripts/copy_buildsync.sh | |
parent | copy_buildsync: disable sync for everything except alpha to test new symlink ... (diff) | |
download | releng-ddd18bfa902e89b820b3fef1365984dcb641e5cb.tar.gz releng-ddd18bfa902e89b820b3fef1365984dcb641e5cb.tar.bz2 releng-ddd18bfa902e89b820b3fef1365984dcb641e5cb.zip |
copy_buildsync: fix check typo
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'scripts/copy_buildsync.sh')
-rwxr-xr-x | scripts/copy_buildsync.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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. |