From 06a4ce4f4c3a0517266b0675e4ebdb721854de7c Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Sun, 14 May 2023 13:20:14 +0200 Subject: [PATCH] docker does not need its specific test script --- README.md | 4 ++-- docker/test.sh => test.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename docker/test.sh => test.sh (100%) diff --git a/README.md b/README.md index 7fb9d84..c8d7c6a 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ ├── debug.bat ................................. Executable debug script, windows ├── run.sh .................................... Executable run script, linux ├── run.bat ................................... Executable run script, windows +├── test.sh ................................... Executable test script, linux ├── application ............................... Executable final packaging ├── bootstrap ................................. Executable entry point ├── container ................................. Web container ├── docker .................................... Docker packaging │   ├── pairgoth.properties.example ........... Docker property file to instanciate -│   ├── run.sh ................................ Docker launch script -│   └── test.sh ............................... Docker test script +│   └── run.sh ................................ Docker launch script └── webapp .................................... Engine web application └── src ├── main diff --git a/docker/test.sh b/test.sh similarity index 100% rename from docker/test.sh rename to test.sh