File: lua5.4.prerm

package info (click to toggle)
lua5.4 5.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,596 kB
  • sloc: ansic: 19,534; makefile: 307; sh: 35
file content (10 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

case "$1" in
    remove)
        update-alternatives --remove lua-interpreter /usr/bin/lua5.4
        update-alternatives --remove lua-compiler /usr/bin/luac5.4
        ;;
esac

#DEBHELPER#