mirror of
https://github.com/simon987/sist2.git
synced 2025-12-19 18:24:54 +00:00
Compare commits
4 Commits
v2.11.0
...
ec5642a3df
| Author | SHA1 | Date | |
|---|---|---|---|
| ec5642a3df | |||
| c1de74e7eb | |||
| f31f138f2e | |||
| 6a48b219e6 |
@@ -80,7 +80,7 @@ steps:
|
|||||||
from_secret: DOCKER_PASSWORD
|
from_secret: DOCKER_PASSWORD
|
||||||
repo: simon987/sist2
|
repo: simon987/sist2
|
||||||
context: ./
|
context: ./
|
||||||
dockerfile: ./Dockerfile
|
dockerfile: ./Dockerfile.arm64
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: arm64-linux
|
auto_tag_suffix: arm64-linux
|
||||||
when:
|
when:
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ sist2 (Simple incremental search tool)
|
|||||||
1. Download sist2 executable
|
1. Download sist2 executable
|
||||||
1. Download the [latest sist2 release](https://github.com/simon987/sist2/releases) *
|
1. Download the [latest sist2 release](https://github.com/simon987/sist2/releases) *
|
||||||
1. *(or)* Download a [development snapshot](https://files.simon987.net/.gate/sist2/simon987_sist2/) *(Not recommended!)*
|
1. *(or)* Download a [development snapshot](https://files.simon987.net/.gate/sist2/simon987_sist2/) *(Not recommended!)*
|
||||||
1. *(or)* `docker pull simon987/sist2:2.10.3-x64-linux`
|
1. *(or)* `docker pull simon987/sist2:2.11.0-x64-linux`
|
||||||
|
|
||||||
1. See [Usage guide](docs/USAGE.md)
|
1. See [Usage guide](docs/USAGE.md)
|
||||||
|
|
||||||
|
|||||||
@@ -14,4 +14,4 @@ rm -rf CMakeFiles CMakeCache.txt
|
|||||||
cmake -DSIST_PLATFORM=arm64_linux -DSIST_DEBUG=on -DBUILD_TESTS=off -DCMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" .
|
cmake -DSIST_PLATFORM=arm64_linux -DSIST_DEBUG=on -DBUILD_TESTS=off -DCMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" .
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
strip sist2
|
strip sist2
|
||||||
mv sist2 sist2-arm64-linux-debug
|
mv sist2_debug sist2-arm64-linux-debug
|
||||||
@@ -366,6 +366,10 @@ int web_args_validate(web_args_t *args, int argc, const char **argv) {
|
|||||||
args->lang = DEFAULT_LANG;
|
args->lang = DEFAULT_LANG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (args->tagline == NULL) {
|
||||||
|
args->tagline = DEFAULT_TAGLINE;
|
||||||
|
}
|
||||||
|
|
||||||
if (strlen(args->lang) != 2) {
|
if (strlen(args->lang) != 2) {
|
||||||
fprintf(stderr, "Invalid --lang value, see usage\n");
|
fprintf(stderr, "Invalid --lang value, see usage\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user