CC-2400: make sure we are using quotes when using rm -rf

-done
This commit is contained in:
martin 2011-06-17 15:00:39 -04:00
parent 948a0e584d
commit 6bea1ab654
3 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ function InstallBinaries()
function UninstallBinaries()
{
echo "* Removing Airtime binaries from ".CONF_DIR_BINARIES.PHP_EOL;
exec("rm -rf \"{${CONF_DIR_BINARIES}}\"");
exec('rm -rf "'.CONF_DIR_BINARIES.'"');
}