Scripts: Handle output escapes in El Capitan

This commit is contained in:
Mykola Grymalyuk
2024-05-21 21:12:06 -06:00
parent 0ef817566e
commit e2dabfcc16
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ function _removeFile() {
function _createParentDirectory() {
local file=$1
local parentDirectory=$(/usr/bin/dirname $file)
local parentDirectory="$(/usr/bin/dirname $file)"
# Check if parent directory exists
if [[ ! -d $parentDirectory ]]; then