cake-build / resources

Contains different kind of resources such as bootstrappers and configuration files.
MIT License
54 stars 78 forks source link

Removed quote escaping within command substitution #18

Closed Silvenga closed 8 years ago

Silvenga commented 8 years ago

Tested with:

mkdir cake\ space
cd cake\ space

cat <<EOF >> build.cake
var target = Argument("target", "Default");

Task("Default")
  .Does(() =>
{
  Information("Hello World!");
});

RunTarget(target);
EOF

curl -Lsfo build.sh https://raw.githubusercontent.com/Silvenga/resources/QuoteAllPaths-Proper/build.sh
bash build.sh

bash build.sh
gep13 commented 8 years ago

@Silvenga thanks for fixing this!