diff options
author | Camil Staps | 2019-06-26 13:44:21 +0200 |
---|---|---|
committer | Camil Staps | 2019-06-26 13:44:21 +0200 |
commit | 1a9e3a7923269fa5065c88cb27df01d4fce63aca (patch) | |
tree | cadbfa6bbaaab586ac05239bf6cba75509b30c5f /system/.profile | |
parent | Remove neovim (diff) |
Minor improvements to Clean ecosystem
Diffstat (limited to 'system/.profile')
-rw-r--r-- | system/.profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/.profile b/system/.profile index a50aa68..4637065 100644 --- a/system/.profile +++ b/system/.profile @@ -33,12 +33,12 @@ cpmq() { abcclean() { find \ - /opt/clean/lib \ + "$CLEAN_HOME/lib" \ ~/projects/clean/{iTasks-SDK,platform,abc-interpreter} \ . \ -name '*.abc' \ -not -name '_system.abc' \ - -exec rm -v {} \; + -exec rm {} \; } shopt -s globstar |