mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
11 lines
157 B
Bash
11 lines
157 B
Bash
|
#!/bin/sh
|
||
|
if [ -d /var/run/emacs/lock ]
|
||
|
then
|
||
|
rm -f /var/run/emacs/lock/*
|
||
|
else
|
||
|
mkdir -p /var/run/emacs/lock
|
||
|
fi
|
||
|
chmod 1777 /var/run/emacs/lock
|
||
|
exit 0
|
||
|
|