download_ubuntu_dependency/create_local_repo.sh
2025-03-13 15:28:51 +08:00

12 lines
271 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 检查当前目录是否存在deb包
if [ ! "$(ls *.deb 2>/dev/null)" ]; then
echo "当前目录没有找到deb包"
exit 1
fi
# 创建软件源索引
dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
echo "本地软件源创建完成!"