[Closed] PAL - ${SetEnvironmentVariablesPath} cannot accept a string with a " in a parameter
In said macro, we see this:
Push "${_VARIABLE_NAME}"
Push "${_PATH}"
This results in Push believing it has multiple parameters due to the " being interpreted as an end string. It needs to be escaped somehow or something.
My band-aid fix was to do this to my local copy:
Push `${_VARIABLE_NAME}`
Push `${_PATH}`
Obviously the same problem, just less likely to run into it due to the uncommon use of the backtick character. Any other macros in PAL may suffer from the same problem.