File: luarocks.postrm

package info (click to toggle)
luarocks 2.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,056 kB
  • ctags: 607
  • sloc: sh: 523; makefile: 181; ansic: 5
file content (10 lines) | stat: -rw-r--r-- 101 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e 

case $1 in
	remove|purge)
		rm -rf /usr/local/lib/luarocks/
	;;
esac

#DEBHELPER#