From cb68bc4eecdd04cad5bd8a0b23e701d18fb11081 Mon Sep 17 00:00:00 2001 From: william Date: Sun, 7 Feb 2016 00:36:04 -0500 Subject: [PATCH] runner --- lxc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxc.js b/lxc.js index c6f7752..231a9db 100644 --- a/lxc.js +++ b/lxc.js @@ -45,7 +45,7 @@ var Container = function(config){ } Container.prototype.clone = function(callback){ - var overlayfs = this.overlayfs : ' -B overlayfs -s ' ? ''; + var overlayfs = this.overlayfs ? ' -B overlayfs -s ' : ''; return sysExec('lxc-clone -o '+this.orig+ ' -n '+this.name + overlayfs, callback); };