[gnome-continuous] zdisks: Fix another bad variable ref
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous] zdisks: Fix another bad variable ref
- Date: Sat, 12 Oct 2013 21:24:51 +0000 (UTC)
commit 2599ed868cfb518645670322277b9aa704b493a3
Author: Colin Walters <walters verbum org>
Date: Sat Oct 12 17:24:35 2013 -0400
zdisks: Fix another bad variable ref
src/js/tasks/task-zdisks.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/js/tasks/task-zdisks.js b/src/js/tasks/task-zdisks.js
index 1297cc4..4639431 100644
--- a/src/js/tasks/task-zdisks.js
+++ b/src/js/tasks/task-zdisks.js
@@ -40,7 +40,7 @@ const TaskZDisks = new Lang.Class({
_postDiskCreation: function(squashedName, diskPath, cancellable) {
let parent = diskPath.get_parent();
- let outPath = parent.get_child(squashedName + '-' + this._buildVersion + '.qcow2.gz');
+ let outPath = parent.get_child(squashedName + '-' + this._buildName + '.qcow2.gz');
let outStream = outPath.create(Gio.FileCreateFlags.REPLACE_DESTINATION, cancellable);
let compressor = Gio.ZlibCompressor.new(Gio.ZlibCompressorFormat.GZIP, 7);
let outConverter = Gio.ConverterOutputStream.new(outStream, compressor);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]