mirror of
https://gitee.com/spark-store-project/spark-wine
synced 2026-06-21 21:53:54 +08:00
0e083b0a3b
Signed-off-by: shenmo <jifengshenmo@outlook.com>
12 lines
466 B
Bash
12 lines
466 B
Bash
#!/bin/bash
|
|
if [ ! -d /opt/deepinwine/tools ];then
|
|
mkdir -p /opt/deepinwine/tools
|
|
fi
|
|
|
|
ln -svf /opt/spark-dwine-helper/spark_run_v4.sh /opt/deepinwine/tools/spark_run_v4.sh
|
|
ln -svf /opt/spark-dwine-helper/spark_kill.sh /opt/deepinwine/tools/spark_kill.sh
|
|
|
|
# 如果不存在 /opt/deepinwine/tools/run_v4.sh,则创建软链接
|
|
if [ ! -f /opt/deepinwine/tools/run_v4.sh ]; then
|
|
ln -svf /opt/spark-dwine-helper/spark_run_v4.sh /opt/deepinwine/tools/run_v4.sh
|
|
fi |