1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Hilko Bengen <bengen@debian.org>
Date: Wed, 29 Jul 2015 23:57:50 +0200
Subject: Fix mkntfs path
---
tests/test-imagex-ntfs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test-imagex-ntfs b/tests/test-imagex-ntfs
index f22198f..635c73f 100755
--- a/tests/test-imagex-ntfs
+++ b/tests/test-imagex-ntfs
@@ -59,7 +59,7 @@ do_mount() {
}
do_mkntfs() {
- if ! mkntfs --force --fast $1 > /dev/null; then
+ if ! /sbin/mkntfs --force --fast $1 > /dev/null; then
error "Could not create NTFS volume \"$1\"! Make sure ntfsprogs are installed."
fi
}
|