diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 14:34:09 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 14:34:09 -0400 |
commit | e0c3d7b0ba452d75a478f2c8505c9b46dabe29b5 (patch) | |
tree | 1356ffcbc118b212debec7df456d158cf624ad0c /cron-jobs | |
parent | 67e03640968bba58e40f22945f21e220425d6909 (diff) |
sourceballs: (from Arch): create the workdir with mode 0770
Diffstat (limited to 'cron-jobs')
-rwxr-xr-x | cron-jobs/sourceballs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/sourceballs b/cron-jobs/sourceballs index b172685..2895725 100755 --- a/cron-jobs/sourceballs +++ b/cron-jobs/sourceballs @@ -79,7 +79,7 @@ for repo in "${PKGREPOS[@]}"; do fi # Get the sources from svn - mkdir -p "${WORKDIR}/pkgbuilds/${repo}-${pkgarch}" + mkdir -p -m0770 "${WORKDIR}/pkgbuilds/${repo}-${pkgarch}" #svn export -q "${SVNREPO}/${pkgbase}/repos/${repo}-${pkgarch}" \ # "${WORKDIR}/pkgbuilds/${repo}-${pkgarch}/${pkgbase}" >/dev/null 2>&1 |