Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 23179ee (0.06 sec)

  1. src/cmd/go/testdata/script/mod_get_commit.txt

    grep 'rsc.io/quote v0.0.0-20180214005840-23179ee8a569' go.mod
    
    # but as commit should record as v1.5.1
    go get rsc.io/quote@23179ee8
    grep 'rsc.io/quote v1.5.1' go.mod
    
    # go mod edit -require does not interpret commits
    go mod edit -require rsc.io/quote@23179ee
    grep 'rsc.io/quote 23179ee' go.mod
    
    # but other commands fix them
    go list -m -mod=mod all
    grep 'rsc.io/quote v1.5.1' go.mod
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top