summaryrefslogtreecommitdiff
path: root/run.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 13:42:14 -0500
committerJeff Carr <[email protected]>2025-10-15 13:42:14 -0500
commit6c958fb9c135c2e06322e0065bcdb8e4f5f4b0b2 (patch)
tree91969901842ba760b2ae53f1d39e6d55d38563ac /run.go
parent0d85a0ef02516eb9677e21390325413e4c4132e3 (diff)
housekeeping + new user behavior
Diffstat (limited to 'run.go')
-rw-r--r--run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.go b/run.go
index 2f2e57f..8a9b304 100644
--- a/run.go
+++ b/run.go
@@ -19,7 +19,7 @@ func RunGitClone(newdir, basedir, giturl string) error {
log.Info("runGitClone() basedir =", basedir)
log.Info("runGitClone() giturl =", giturl)
if !shell.IsDir(basedir) {
- os.MkdirAll(basedir, os.ModePerm)
+ os.MkdirAll(basedir, 0755)
}
err := os.Chdir(basedir)
if err != nil {