Skip to content

Commit 809b6fb

Browse files
committed
fix shell globbing
1 parent e5548e2 commit 809b6fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/omni

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
# }}}
1515
#
16-
# Copyright 2023 OmniOS Community Edition (OmniOSce) Association.
16+
# Copyright 2024 OmniOS Community Edition (OmniOSce) Association.
1717

1818
export PATH=/usr/bin:/usr/sbin:/opt/ooce/bin
1919
export OMNIVER=master
@@ -728,7 +728,7 @@ function reset_buildrepo {
728728

729729
echo "Clearing build IPS repository ($repo)..."
730730
[ -d "$repo/.zfs" ] && zfsrollback "$repo"
731-
[ -d "$repo" ] && rm -rf "$repo/*"
731+
[ -d "$repo" ] && rm -rf "$repo"/*
732732
pkgrepo create "$repo"
733733
pkgrepo add-publisher -s "$repo" omnios
734734
pkgrepo -s "$repo" info
@@ -738,7 +738,7 @@ function cleanup_omnios {
738738
echo "Clearing temporary build directory..."
739739
for d in "$omnios_buildtmp" "$omnios_clone/tmp.repo"; do
740740
[ -d "$d/.zfs" ] && zfsrollback "$d"
741-
[ -d "$d" ] && rm -rf "$d/*"
741+
[ -d "$d" ] && rm -rf "$d"/*
742742
done
743743
reset_buildrepo "$omnios_buildrepo"
744744
reset_buildrepo "$braich_buildrepo"

0 commit comments

Comments
 (0)