fix mdns on windows

This commit is contained in:
ed
2022-12-03 13:31:00 +00:00
parent 2fbdc0a85e
commit 99efc290df
12 changed files with 90 additions and 198 deletions

View File

@@ -3,6 +3,7 @@ set -e
curl -k https://192.168.123.1:3923/cpp/scripts/pyinstaller/build.sh |
tee build2.sh | cmp build.sh && rm build2.sh || {
[ -s build2.sh ] || exit 1
echo "new build script; upgrade y/n:"
while true; do read -u1 -n1 -r r; [[ $r =~ [yYnN] ]] && break; done
[[ $r =~ [yY] ]] && mv build{2,}.sh && exec ./build.sh