Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fslckout (0.08 sec)

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

    # "fossil" is the Fossil file server on Plan 9.
    [GOOS:plan9] skip
    [!exec:fossil] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    env HOME=$WORK
    env USER=gopher
    [!GOOS:windows] env fslckout=.fslckout
    [GOOS:windows] env fslckout=_FOSSIL_
    exec pwd
    exec fossil init repo.fossil
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    const fossilRepoName = ".fossil"
    
    // vcsFossil describes how to use Fossil (fossil-scm.org)
    var vcsFossil = &Cmd{
    	Name: "Fossil",
    	Cmd:  "fossil",
    	RootNames: []rootName{
    		{filename: ".fslckout", isDir: false},
    		{filename: "_FOSSIL_", isDir: false},
    	},
    
    	CreateCmd:   []string{"-go-internal-mkdir {dir} clone -- {repo} " + filepath.Join("{dir}", fossilRepoName), "-go-internal-cd {dir} open .fossil"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top