mirror of
https://github.com/nushell/nushell.git
synced 2025-08-15 23:17:53 +02:00
Fix exported module not found (#9121)
This commit is contained in:
1
tests/modules/samples/spam/eggs.nu
Normal file
1
tests/modules/samples/spam/eggs.nu
Normal file
@ -0,0 +1 @@
|
||||
export def main [] { 'eggs' }
|
@ -1,3 +1,5 @@
|
||||
export module eggs.nu
|
||||
|
||||
export def main [] { 'spam' }
|
||||
|
||||
export def baz [] { 'spambaz' }
|
||||
|
Reference in New Issue
Block a user