We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc12a7 commit f4f589fCopy full SHA for f4f589f
2 files changed
.gitignore
@@ -25,4 +25,5 @@ workspace*.code-*
25
26
# environment files (not example)
27
.env
28
-!.env.example
+!.env.example*
29
+!*.example
riotpot/utils/emulator/emulator.go
@@ -37,6 +37,13 @@ func Register_emulators(validated_emulators []string) *Emulators {
37
log.Fatal(err)
38
}
39
40
+ pName, err := p.Lookup("Name")
41
+ if err != nil {
42
+ panic(err)
43
+ }
44
+
45
+ log.Printf("Loading emulator: %s\n", *pName.(*string))
46
47
// find the function Register
48
rf, err := p.Lookup("Register")
49
if err != nil {
0 commit comments