summaryrefslogtreecommitdiff
path: root/commands.go
diff options
context:
space:
mode:
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
)