mirror of
https://github.com/go-shiori/shiori.git
synced 2026-04-25 14:35:52 +03:00
[GH-ISSUE #151] Failed to build from source using go get command #110
Labels
No labels
component:backend
component:builds
component:builds
component:extension
component:frontend
component:readability
database
database:mysql
database:postgres
database:sqlite
feature:ebooks
github_actions
good first issue
hacktoberfest
note:duplicate?
note:fixed?
note:out-of-scope?
os:windows
priority:high
priority:low
pull-request
resolution:as-intended
resolution:cant-reproduce
resolution:duplicate
resolution:fixed
resolution:wontfix
tag:TBD
tag:big-task
tag:help-wanted
tag:huge-data
tag:meta
tag:more-info
tag:next
tag:no-stale
tag:requires-migrations
tag:research
tag:security 🛡️
tag:stale
tag:waiting-for-assignee
type:bug
type:documentation
type:enhancement
type:meta
type:ux
user:cli
user:web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shiori#110
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @insidesmart on GitHub (Sep 17, 2019).
Original GitHub issue: https://github.com/go-shiori/shiori/issues/151
github.com/go-shiori/shiori@a5b4f78f10/pkg/warc/internal/archiver/processor.go (L13)github.com/go-shiori/shiori@a5b4f78f10/pkg/warc/internal/archiver/processor.go (L14)Apparently
doesnt exist and it causes build to fail.
@RadhiFadlillah commented on GitHub (Sep 19, 2019):
That's weird, I've tested it just now and it works properly. My command is :
The
v2part ingithub.com/tdewolff/parse/v2/is just how Go modules tells that the package is version 2. ThevNpart is exist if the package released with version 2 or higher as explained in wiki.@insidesmart commented on GitHub (Sep 19, 2019):
Strange. I see the following as the result when I deleted the old directory and tried installing via
go get -v github.com/go-shiori/shiori
Also there is no folder called github.com under /usr/local/Cellar/go/1.10/libexec/src
Note: I am trying it in Mac OS
@RadhiFadlillah commented on GitHub (Sep 19, 2019):
Have you tried the
-uflag ?After you delete the old
shiorifolder and download it again usinggo get -v, it will redownload the Shiori's repository, but not the Shiori's dependencies. Hence why it can't findtdewolff/parse/v2/package from$GOROOT.By using
-uflag,go getwill also download the dependencies which hopefully fixed this issue.@insidesmart commented on GitHub (Sep 22, 2019):
It worked after I upgraded go from 1.10 to 1.13. You could close this issue. Thanks.