10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" != "upgrade" ]; then
|
|
update-alternatives --remove editor /bin/ed
|
|
fi
|
|
|
|
|