nomsu/lib/tools/uninstall.nom
Bruce Hill a1849da175 Autoformat (mostly just to do with the new
blank-line-after-end-of-multi-indent-block rule
2019-03-27 15:22:46 -07:00

38 lines
1.1 KiB
Plaintext
Executable File

#!/usr/bin/env nomsu -V7.0.0
###
A tool to uninstall third party Nomsu packages (the inverse of the install tool)
Usage:
nomsu -t uninstall <package_names...>
use "filesystem"
use "commandline"
use "shell"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(run command $cmd) means:
say $cmd
try:
sh> $cmd
..if it fails:
say ("
Sorry, the uninstall failed. You may need to re-run as root with `sudo` in front of the command.
")
exit 1
command line program with $args:
$searchpath =
[:
for $ in ["?.lua", "?/init.lua", "?.nom", "?/init.nom"]:
add "\$(NOMSU PACKAGEPATH)\$"
], joined with ";"
for $package_name in $args.extras:
$path = ($package.searchpath $package_name $package.nomsupath "/")
unless $path:
say "Sorry, couldn't find \$package_name in \$(NOMSU PACKAGEPATH)"
exit 1
$path = ($path, with "/init%.nom" -> "")
unless ((ask "Do you want to delete \($path)? [Y/n] ") == "n"):
run command "rm -rv \$path"