mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-05-30 01:31:06 +08:00
9eb141ee35
移除复杂的ACE环境检查逻辑,仅保留基本的dpkg检查 在App.vue中添加二次确认步骤以确保包真实安装
7 lines
165 B
Bash
Executable File
7 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
# 检查包是否已安装
|
|
# 返回 0 表示已安装,非 0 表示未安装
|
|
|
|
dpkg -s "$1" 2>/dev/null | grep -q 'Status: install ok installed'
|
|
exit $?
|