9bd1da6079
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/vim.git#59d01ce8eff3f86ac29903dbeb7d2ec5756b46f1
11 lines
150 B
Bash
11 lines
150 B
Bash
#!/usr/bin/sh
|
|
|
|
# run vim -R if available
|
|
if test -f /usr/bin/vim
|
|
then
|
|
exec /usr/bin/vim -R "$@"
|
|
fi
|
|
|
|
# run vi otherwise
|
|
exec /usr/libexec/vi -R "$@"
|