tp-note 1.12.19

Minimalist note taking: edit and save your clipboard content as a note file
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#set -x
cd ..
find target -mindepth 2 -not -path "*/release/tp-note" \
                        -not -path "*/release/tp-note.exe" \
                        -not -path "*/wix/tp-note*.msi" \
                        -not -path "*/debian" \
                        -not -path "*/debian/tp-note*.deb" \
                        -not -path "*/release/*.md" \
                        -not -path "*/release" \
                        -not -path "target/doc*"  \
                        -exec rm -r {} \;

rm -r target/debug
rm -r target/release
rm -r target/rls
rm target/.rustc_info.json