changeset 1613:5e76b1ac1e6c

Fix typo.
author Rob Landley <rob@landley.net>
date Thu, 11 Jul 2013 00:17:36 -0500
parents 440467007574
children ee6db9e5cce3
files sources/toys/make-hdb.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/toys/make-hdb.sh	Mon Jul 08 19:56:51 2013 -0500
+++ b/sources/toys/make-hdb.sh	Thu Jul 11 00:17:36 2013 -0500
@@ -3,7 +3,7 @@
   # Some distros don't put /sbin:/usr/sbin in the $PATH for non-root users.
   if [ -z "$(which  mke2fs)" ] || [ -z "$(which tune2fs)" ]
   then
-    export PATH=/sbin:/usr/bin:$PATH
+    export PATH=/sbin:/usr/sbin:$PATH
   fi
 
   dd if=/dev/zero of="$HDB" bs=1024 seek=$[$HDBMEGS*1024-1] count=1 &&