File: lua5.4.prerm

package info (click to toggle)
lua5.4 5.4.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,648 kB
  • sloc: ansic: 20,100; makefile: 314; sh: 122
file content (12 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -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#