Pull out constant for permissions
Also, drop permissions from 0755 to 0700
This commit is contained in:
parent
6f1d00097b
commit
e045f28b44
1 changed files with 4 additions and 3 deletions
|
@ -64,13 +64,14 @@ func (u *User) IsTrusted() bool {
|
|||
}
|
||||
|
||||
const (
|
||||
pullsPrefix = "https://api.github.com/repos/matrix-org/matrix-doc/pulls"
|
||||
matrixDocCloneURL = "https://github.com/matrix-org/matrix-doc.git"
|
||||
pullsPrefix = "https://api.github.com/repos/matrix-org/matrix-doc/pulls"
|
||||
matrixDocCloneURL = "https://github.com/matrix-org/matrix-doc.git"
|
||||
permissionsOwnerFull = 0700
|
||||
)
|
||||
|
||||
func gitClone(url string, shared bool) (string, error) {
|
||||
directory := path.Join("/tmp/matrix-doc", strconv.FormatInt(rand.Int63(), 10))
|
||||
if err := os.MkdirAll(directory, 0755); err != nil {
|
||||
if err := os.MkdirAll(directory, permissionsOwnerFull); err != nil {
|
||||
return "", fmt.Errorf("error making directory %s: %v", directory, err)
|
||||
}
|
||||
args := []string{"clone", url, directory}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue