1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Merge remote-tracking branch 'github/next' into next

This commit is contained in:
Dave Davenport 2022-09-25 21:46:36 +02:00
commit 08bd2f2c69
2 changed files with 5 additions and 5 deletions

View file

@ -2,8 +2,8 @@
DIR=$1
FILE=$2
GIT=$(which git)
SED=$(which sed)
GIT=$(command -v git)
SED=$(command -v sed)
if [ -d "${DIR}/.git/" ] && [ -n "${GIT}" ]
then

View file

@ -3,9 +3,9 @@
# This code is released in public domain by Dave Davenport <qball@gmpclient.org>
#
ROFI=$(which rofi)
SED=$(which sed)
MKTEMP=$(which mktemp)
ROFI=$(command -v rofi)
SED=$(command -v sed)
MKTEMP=$(command -v mktemp)
if [ -z "${SED}" ]
then