tinygo-org / tinyfs

Embedded filesystems for TinyGo. Currently supports FATfs and LittleFS on microcontrollers with either SDCard or Flash RAM.
https://tinygo.org
BSD 3-Clause "New" or "Revised" License
25 stars 5 forks source link

What if there is a problem with the import path? #2

Closed sago35 closed 3 years ago

sago35 commented 3 years ago

What if there is a problem with the import path? Can I just rewrite all the imports in the code to github.com/tinygo-org/tinyfs?

$ go mod tidy
go: finding module for package github.com/tinygo-org/tinyfs/fatfs
go: finding module for package github.com/tinygo-org/tinyfs
go: found github.com/tinygo-org/tinyfs/fatfs in github.com/tinygo-org/tinyfs v0.0.0-20200908023903-7edd7c8b7150
go: found github.com/tinygo-org/tinyfs in github.com/tinygo-org/tinyfs v0.0.0-20200908023903-7edd7c8b7150
go: tinygo.org/x/drivers/examples/sdcard/tinyfs imports
        github.com/tinygo-org/tinyfs/fatfs: github.com/tinygo-org/tinyfs@v0.0.0-20200908023903-7edd7c8b7150: parsing go.mod:
        module declares its path as: github.com/bgould/tinyfs
                but was required as: github.com/tinygo-org/tinyfs
deadprogram commented 3 years ago

Thanks for doing this @sago35 now closing.