mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-07-30 14:41:59 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.11.0 to 1.12.0. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.11.0...v1.12.0) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
430 B
Go
25 lines
430 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !go1.5
|
|
// +build !go1.5
|
|
|
|
package plan9
|
|
|
|
func fixwd() {
|
|
}
|
|
|
|
func Getwd() (wd string, err error) {
|
|
fd, err := open(".", O_RDONLY)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer Close(fd)
|
|
return Fd2path(fd)
|
|
}
|
|
|
|
func Chdir(path string) error {
|
|
return chdir(path)
|
|
}
|