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

View File

@@ -43,7 +43,7 @@ function _removeFile() {
function _createParentDirectory() {
local currentFile=$1
local parentDirectory=$(/usr/bin/dirname $currentFile)
local parentDirectory="$(/usr/bin/dirname $currentFile)"
# Check if parent directory exists
if [[ ! -d $parentDirectory ]]; then