“Native” environment type renamed to “Prefix”.

master
Luka Vandervelden 2019-06-09 13:50:49 +02:00
parent 0378d43224
commit 52e4bce548
1 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ end
class Environment class Environment
enum Type enum Type
Native Prefix
RootFileSystem RootFileSystem
end end
@ -110,7 +110,7 @@ class Environment
name: String, name: String,
type: { type: {
type: Type, type: Type,
default: Type::Native default: Type::Prefix
}, },
domain_name: { domain_name: {
type: String?, type: String?,
@ -120,7 +120,7 @@ class Environment
def initialize() def initialize()
@name = "root" @name = "root"
@type = Type::Native @type = Type::Prefix
end end
class_getter root = Environment.new class_getter root = Environment.new