diff options
author | kris <kris@FreeBSD.org> | 2005-07-25 04:35:07 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-07-25 04:35:07 +0800 |
commit | 4e0f132e9b3b1807aaabe7359f46365e46b93593 (patch) | |
tree | 8f42650ca645fa7bca2cfa5e003c1b1560ada8ca /Tools | |
parent | 2ee6242dfa283acb61c5aaa45f8e05579845d203 (diff) | |
download | freebsd-ports-gnome-4e0f132e9b3b1807aaabe7359f46365e46b93593.tar.gz freebsd-ports-gnome-4e0f132e9b3b1807aaabe7359f46365e46b93593.tar.zst freebsd-ports-gnome-4e0f132e9b3b1807aaabe7359f46365e46b93593.zip |
Correct typo
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/claim-chroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/claim-chroot b/Tools/portbuild/scripts/claim-chroot index fae7e86c165c..3fd4a705bde9 100755 --- a/Tools/portbuild/scripts/claim-chroot +++ b/Tools/portbuild/scripts/claim-chroot @@ -40,7 +40,7 @@ done chrootnum=$$ # If we didn't find a pre-existing directory, create and claim a new one. while [ ${found} != 1 ]; do - chrootnum=$((chrootnum+1)) + chrootnum=$(($chrootnum+1)) chroot=${chrootdir}/${chrootnum} mkdir -p ${chroot} 2>/dev/null || continue mkdir ${chroot}/used 2>/dev/null || continue |