diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-27 00:16:33 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-27 00:16:33 -0500 |
commit | 0097ea36511596b3de1947a2069d708079887058 (patch) | |
tree | d51c39b4742ede735a2ecf8fd8315a2f1c5cc6d2 /createworkdir | |
parent | 8e4aa31eb303dc0086e9a4f535efda9a6d3939e0 (diff) |
"first working prtools + fixes"
Diffstat (limited to 'createworkdir')
-rwxr-xr-x | createworkdir | 4 |
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 } |