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