1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-06 16:02:58 +00:00

feat: implement empty Library directory cleanup and Android NDK version check.

This commit is contained in:
Tw93
2026-01-03 09:41:05 +08:00
parent a0be298bfc
commit f5a8adb97e
6 changed files with 55 additions and 20 deletions

View File

@@ -71,3 +71,10 @@ setup() {
run bash -c "grep -q 'write_raycast_script' '$PROJECT_ROOT/scripts/setup-quick-launchers.sh'"
[ "$status" -eq 0 ]
}
@test "install.sh supports dev branch installs" {
run bash -c "grep -q 'refs/heads/dev.tar.gz' '$PROJECT_ROOT/install.sh'"
[ "$status" -eq 0 ]
run bash -c "grep -q 'MOLE_VERSION=\"dev\"' '$PROJECT_ROOT/install.sh'"
[ "$status" -eq 0 ]
}