From dd82dbe33fc1fecbbe8ddd93467e9210797ee862 Mon Sep 17 00:00:00 2001 From: Julian Giordani Date: Thu, 9 Jan 2025 10:43:11 +1100 Subject: [PATCH] Fix typo when calling bash use 'set -x' instead --- clean.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/clean.sh b/clean.sh index d50d698a..2376497f 100755 --- a/clean.sh +++ b/clean.sh @@ -1,9 +1,11 @@ -#!/usr/bin/env bash -x +#!/usr/bin/env bash + +set -x # show commands rm -fr build find . -name \*.so -exec rm {} + find . -name __pycache__ -exec rm -r {} + find . -name '*.egg-info' -exec rm -r {} + rm -rf .pytest_cache -## To remove git +## To remove untracked git files #git clean -dfX ; git clean -dfx