11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
rcpath=$XDG_CONFIG_HOME/emacs/local/lib/mu4e/mbsyncrc
|
||
|
|
||
|
if [ ! -f $rcpath ]; then
|
||
|
echo "mbsyncrc does not exist"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
/usr/bin/mbsync -c "$rcpath" "$@"
|