diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-02 11:57:38 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-02 11:57:38 +0100 |
commit | 8b8f31f450e5bb9d36edf5e32cf68576da4a4ba0 (patch) | |
tree | b05a8aeaeecfd1c882761e531c1b15f9b1e50d7f | |
parent | 33c0d7957882883f88e3ef1affe8203f2bbc4dde (diff) |
add more extractors
-rw-r--r-- | MANIFEST | 6 | ||||
-rwxr-xr-x | actions (renamed from actions.sh) | 8 |
2 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,7 @@ script/jwebmail script/qmauth.pl +script/qmauth.py +bin/jwebmail-extract lib/JWebmail.pm lib/JWebmail/Controller/Webmail.pm @@ -41,13 +43,13 @@ templates/error.html.ep public/style.css -jwebmail.toml +jwebmail.development.toml README.md CHANGES.md LICENSE -actions.sh +actions Makefile.PL MANIFEST @@ -84,6 +84,14 @@ list_translations () { fi } +help_text="$help_text rust_extract\t[]\tupdates and gets the rust extract binary\n" +rust_extract () { + cd extract + cargo build --release --target=x86_64-unknown-linux-musl + cp target/x86_64-unknown-linux-musl/release/jwebmail-extract ../bin + cd .. +} + help () { echo "The following actions are available:" echo |