first commit

This commit is contained in:
2026-08-21 15:21:29 +02:00
parent e8c6f98182
commit bcb8f9532f
22 changed files with 1980 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
HERE=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
DEB="$HERE/dist/librenet-scanner_0.1.0_all.deb"
if [ ! -f "$DEB" ]; then
echo "Paquet .deb absent. Construction..."
"$HERE/packaging/build-deb.sh"
fi
exec sudo apt install "$DEB"