Skip to content

Commit

Permalink
fixed missing space in snapshot command
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-roark committed Sep 18, 2014
1 parent e9ae2d2 commit 40f9694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion computer.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Computer.prototype.run = function() {
Computer.prototype.snapshot = function(name) {
if (!this.running || !this.img) return;

var command = 'qemu-img create -f qcow2 -b' + this.img + ' ' + name;
var command = 'qemu-img create -f qcow2 -b ' + this.img + ' ' + name;
exec(command, function(error, stdout, stderr) {
if (!error) {
console.log('saved emu to ' + name);
Expand Down

0 comments on commit 40f9694

Please sign in to comment.