fix spelling, remove dead file

module-based-network
Daniel Barlow 2023-02-05 22:42:41 +00:00
parent 424abc72b8
commit cb39209492
2 changed files with 9 additions and 16 deletions

View File

@ -4,12 +4,16 @@
* Contributions are very welcome * Contributions are very welcome
* Please open an issue (or otherwise establish some kind of dialogue) before you send a PR I haven't asked for. * Please open an issue (or otherwise establish some kind of dialogue)
Just so I know it's expected and you're not wasting time doing something I won't accept or have already started on before you send a PR I haven't asked for. Just so I know it's
expected and you're not wasting time doing something I won't accept or
have already started on
* The Nix code in Liminix is MIT-licenced (same as Nixpkgs), but the code it combines from other places (e.g. Linux, OpenWRT) may * The Nix code in Liminix is MIT-licenced (same as Nixpkgs), but the
have a variety of licences. I have no intention of asking for copyright assignment: just like when submitting to the code it combines from other places (e.g. Linux, OpenWrt) may have a
Linux kernel you retain the copyright on the code you contribute. variety of licences. I have no intention of asking for copyright
assignment: just like when submitting to the Linux kernel you retain
the copyright on the code you contribute.
* Please govern yourself in Liminix project venues according to the guidance in the [geekfeminism "Community Anti-harassment Policy"](https://geekfeminism.wikia.org/wiki/Community_anti-harassment/Policy). * Please govern yourself in Liminix project venues according to the guidance in the [geekfeminism "Community Anti-harassment Policy"](https://geekfeminism.wikia.org/wiki/Community_anti-harassment/Policy).

View File

@ -1,11 +0,0 @@
#!/usr/bin/env bash
export DEVICE=${DEVICE-qemu}
export TMPDIR=${TMPDIR-/tmp}
NIX_PATH=liminix=`pwd`:$NIX_PATH
for i in tests/*/run.sh; do
echo $i
(cd `dirname $i`; ./`basename $i` $* ) || exit 1
done