diff options
author | EuAndreh <eu@euandre.org> | 2022-10-10 18:47:22 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-10 18:47:22 -0300 |
commit | 844f1cd76a4a1e39a7122966a443d3ea4ab6509b (patch) | |
tree | 919199bcd4e104e684e1ba95738413aca22ab06f /bin | |
parent | bin/status-bar: Include count of up VMs (diff) | |
download | dotfiles-844f1cd76a4a1e39a7122966a443d3ea4ab6509b.tar.gz dotfiles-844f1cd76a4a1e39a7122966a443d3ea4ab6509b.tar.xz |
bin/vm: Fix name of PID file when creating it
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -154,7 +154,7 @@ case "$ACTION" in -drive file="$QCOW",media=disk,if=virtio \ -enable-kvm \ -nographic 1>/dev/null 2>&1 & - printf '%s' $! > "$PID_F.pid" + printf '%s' $! > "$PID_F" fi ;; down) |