Skip to content

Commit

Permalink
Some more unquoted strings, @pcahyna++
Browse files Browse the repository at this point in the history
  • Loading branch information
rmetrich committed Jun 17, 2024
1 parent 744a171 commit 4485326
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ if [ -z "$BLOCKCLONE_SAVE_MBR_DEV" ]; then
return
fi

local backup_path=$( url_path "$BACKUP_URL" )
local opath=$( backup_path "$scheme" "$path" )
local backup_path="$( url_path "$BACKUP_URL" )"
local opath="$( backup_path "$scheme" "$path" )"

LogPrint "Copying $VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE to $opath"

cp $v $VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE $opath
cp $v "$VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE" "$opath"
StopIfError "Failed to copy \
$VAR_DIR/layout/$BLOCKCLONE_PARTITIONS_CONF_FILE to $opath"

LogPrint "Copying $VAR_DIR/layout/$BLOCKCLONE_MBR_FILE to $opath"

cp $v $VAR_DIR/layout/$BLOCKCLONE_MBR_FILE $opath
cp $v "$VAR_DIR/layout/$BLOCKCLONE_MBR_FILE" "$opath"

StopIfError "Failed to copy $VAR_DIR/layout/$BLOCKCLONE_MBR_FILE to $opath"

0 comments on commit 4485326

Please sign in to comment.