summaryrefslogtreecommitdiff
path: root/createworkdir
diff options
context:
space:
mode:
Diffstat (limited to 'createworkdir')
-rwxr-xr-xcreateworkdir4
1 files changed, 2 insertions, 2 deletions
diff --git a/createworkdir b/createworkdir
index a28d198..53298f6 100755
--- a/createworkdir
+++ b/createworkdir
@@ -28,7 +28,7 @@ custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf
# Create the WORKDIR
[[ ! -d ${WORKDIR} ]] && {
msg "Creating WORKDIR on ${WORKDIR}"
- stdnull "mkdir -p ${WORKDIR}" ||{
+ mkdir -p ${WORKDIR} ||{
error "Could not create ${WORKDIR}"
exit 1
}
@@ -50,7 +50,7 @@ custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf
# Create the staging dirs
for _repo in ${REPOS[@]}; do
[[ ! -d ${WORKDIR}/staging/${_repo} ]] && {
- stdnull "mkdir -p ${WORKDIR}/staging/${_repo}" || {
+ mkdir -p ${WORKDIR}/staging/${_repo} || {
error "Can't create ${WORKDIR}/staging/${_repo}"
exit 1
}