Compare commits

..

No commits in common. "b20e2154dc5ace0822ffd1a31b129917a53489f8" and "a41f37965e94dd70102fd3e965cc8817e1388b75" have entirely different histories.

3 changed files with 6 additions and 25 deletions

View file

@ -1,12 +0,0 @@
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
indent_size = 4

View file

@ -20,12 +20,12 @@ erase()
dir="${1}"
printf "%s " "${dir}"
find "${dir}" \
-maxdepth 1 \
\! -name "." \
\! -name ".." \
\! -name "src" \
-exec printf . \; \
-exec rm -rf "{}" \;
-maxdepth 1 \
\! -name "." \
\! -name ".." \
\! -name "src" \
-exec printf . \; \
-exec rm -rf "{}" \;
echo
}
@ -45,14 +45,11 @@ while true; do
read -r r
if [ "${r}" = "1" ]; then
erase "${repodir}"
printok "remove complete"
elif [ "${r}" = "2" ]; then
erase "${installdir}"
printok "remove complete"
elif [ "${r}" = "3" ]; then
erase "${repodir}"
erase "${installdir}"
printok "remove complete"
elif [ "${r}" = "4" ]; then
break
else

View file

@ -2,10 +2,6 @@
* vNEXT
**** Log when ~sourcezap rm~ completes successfully
Similar to other commands, log when the ~sourcezap rm~ command
completes successfully
**** Format log messages with program name
This change formats log messages written to standard output
and standard error with the pattern ~sourcezap: <message>~