Fixed clean_target function
This commit is contained in:
parent
4d1bd4b677
commit
924b961dc3
|
@ -59,7 +59,7 @@ patch_target() {
|
||||||
}
|
}
|
||||||
|
|
||||||
clean_target() {
|
clean_target() {
|
||||||
clean_paths=$1
|
clean_paths="$@"
|
||||||
for path in $clean_paths; do
|
for path in $clean_paths; do
|
||||||
if [ -e "$TARGET/$path" ]; then
|
if [ -e "$TARGET/$path" ]; then
|
||||||
sudo rm -rf "$TARGET/$path"
|
sudo rm -rf "$TARGET/$path"
|
||||||
|
|
Loading…
Reference in New Issue