summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdraklive-install6
1 files changed, 4 insertions, 2 deletions
diff --git a/draklive-install b/draklive-install
index 835cb6a..996b8e6 100755
--- a/draklive-install
+++ b/draklive-install
@@ -105,9 +105,11 @@ fs::any::prepare_minimal_root($all_hds);
run_program::run('makedev', $::prefix . '/dev');
undef $wait;
+my $copy_source = '/';
+
#- copy to disk
$wait = $in->wait_message('', N("Computing total size"));
-my $total = first(split(/\s+/, `du -sbx / 2>/dev/null`));
+my $total = first(split(/\s+/, `du -sbx $copy_source 2>/dev/null`));
undef $wait;
sub build_copy_command {
@@ -120,7 +122,7 @@ sub build_copy_command {
}
($wait, my $update_progress) = copying_message_with_progress_bar($in, N("Copying in progress"));
-open(my $OUTPUT, '-|', build_copy_command('/', $::prefix));
+open(my $OUTPUT, '-|', build_copy_command($copy_source, $::prefix));
{
local $_;
my $current = my $previous = 0;