mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 10:25:32 +00:00
This change introduces meson for building ibus-keyman instead of autotools. Closes #5981.
7 lines
155 B
Bash
Executable file
7 lines
155 B
Bash
Executable file
#!/usr/bin/env bash
|
|
PID_FILE=$1
|
|
|
|
echo "Shutting down processes..."
|
|
bash "$PID_FILE" > /dev/null 2>&1
|
|
rm "$PID_FILE"
|
|
echo "Finished shutdown of processes."
|