mirror of
https://github.com/mii443/akaza.git
synced 2025-08-22 14:55:31 +00:00
14 lines
174 B
Bash
Executable File
14 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
umask 077
|
|
|
|
exec 1>> ~/.ibus-akaza.log
|
|
exec 2>&1
|
|
|
|
export RUST_BACKTRACE=4
|
|
|
|
exec $BASEDIR/../target/release/ibus-akaza --ibus -vv
|