summaryrefslogtreecommitdiff
path: root/commands.go
diff options
context:
space:
mode:
authorEmanuele Aina <emanuele.aina@collabora.com>2019-09-09 06:58:33 +0000
committerEmanuele Aina <emanuele.aina@collabora.com>2019-09-09 06:58:33 +0000
commit8c16f187783f193a7e5a87d9ef1281cd8ca92c1e (patch)
treeefd3b745eec6410d08dc53dd7ecb43a7be5cdd32 /commands.go
parent3f13e87bb45d0d791c86338f9aa0853a9f41a992 (diff)
parentafdeba754f8766de3b12211953eced5304991cde (diff)
Update upstream source from tag 'upstream/1.0.0+git20190906.f5be960'
Update to upstream version '1.0.0+git20190906.f5be960' with Debian dir ff8d0024ed4cb787f364d24c9d56bc359f4d73e9
Diffstat (limited to 'commands.go')
-rw-r--r--commands.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.go b/commands.go
index aa562e3..0ea2b9a 100644
--- a/commands.go
+++ b/commands.go
@@ -13,8 +13,8 @@ import (
type ChrootEnterMethod int
const (
- CHROOT_METHOD_NONE = iota // use nspawn to create the chroot environment
- CHROOT_METHOD_NSPAWN // No chroot in use
+ CHROOT_METHOD_NONE = iota // No chroot in use
+ CHROOT_METHOD_NSPAWN // use nspawn to create the chroot environment
CHROOT_METHOD_CHROOT // use chroot to create the chroot environment
)