From 004303300bfeebc665ef86841eb14291655794a6 Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Thu, 9 Aug 2018 10:09:19 -0700 Subject: [PATCH] -f flag for file removal too --- bin/clean | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/clean b/bin/clean index 2765d394..e989035f 100755 --- a/bin/clean +++ b/bin/clean @@ -10,7 +10,7 @@ rm -rf $CELLXGENE_DIR/client/build echo "removing egg-info" rm -rf $CELLXGENE_DIR/cellxgene.egg-info echo "removing static files" -rm $CELLXGENE_DIR/server/app/web/templates/index.html +rm -f $CELLXGENE_DIR/server/app/web/templates/index.html rm -rf $CELLXGENE_DIR/server/app/web/static echo "cellxgene cleanup complete"