ags-upload

Insert AGS files to a database
git clone git://src.adamsgaard.dk/ags-upload # fast
git clone https://src.adamsgaard.dk/ags-upload.git # slow
Log | Files | Refs Back to index

commit 6949fac8034abbbff9156c7e92f9fc9c092448de
parent b989db1ba48edb13663f924329b895434d18df80
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed,  8 Oct 2025 14:16:46 +0200

post.sh: run curl in silent mode

Diffstat:
Mcmd/post.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/post.sh b/cmd/post.sh @@ -1,5 +1,5 @@ #!/bin/sh for f in ../input/*.ags ../input/*.AGS do - curl -X POST http://localhost:8080/ingest/ags -F "file=@$f" + curl -s -X POST http://localhost:8080/ingest/ags -F "file=@$f" done