clean up and format code

This commit is contained in:
Sunshine 2024-09-24 18:32:56 +00:00
parent b6b358b3bc
commit 95645fcff4
7 changed files with 4 additions and 15 deletions

View File

@ -1 +0,0 @@
docs/arch

View File

@ -6,9 +6,7 @@ on:
paths-ignore: paths-ignore:
- 'assets/' - 'assets/'
- 'dist/' - 'dist/'
- 'docs/'
- 'snap/' - 'snap/'
- '.adr-dir'
- 'Dockerfile' - 'Dockerfile'
- 'LICENSE' - 'LICENSE'
- 'Makefile' - 'Makefile'

View File

@ -6,9 +6,7 @@ on:
paths-ignore: paths-ignore:
- 'assets/' - 'assets/'
- 'dist/' - 'dist/'
- 'docs/'
- 'snap/' - 'snap/'
- '.adr-dir'
- 'Dockerfile' - 'Dockerfile'
- 'LICENSE' - 'LICENSE'
- 'Makefile' - 'Makefile'

View File

@ -6,9 +6,7 @@ on:
paths-ignore: paths-ignore:
- 'assets/' - 'assets/'
- 'dist/' - 'dist/'
- 'docs/'
- 'snap/' - 'snap/'
- '.adr-dir'
- 'Dockerfile' - 'Dockerfile'
- 'LICENSE' - 'LICENSE'
- 'Makefile' - 'Makefile'

View File

@ -8,9 +8,7 @@ on:
paths-ignore: paths-ignore:
- 'assets/' - 'assets/'
- 'dist/' - 'dist/'
- 'docs/'
- 'snap/' - 'snap/'
- '.adr-dir'
- 'Dockerfile' - 'Dockerfile'
- 'LICENSE' - 'LICENSE'
- 'Makefile' - 'Makefile'
@ -19,7 +17,6 @@ on:
jobs: jobs:
build_and_test: build_and_test:
strategy: strategy:
matrix: matrix:
os: os:
@ -31,7 +28,6 @@ jobs:
- beta - beta
- nightly - nightly
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- run: git config --global core.autocrlf false - run: git config --global core.autocrlf false

View File

@ -51,7 +51,7 @@ scoop install main/monolith
#### Via [Winget](https://winstall.app/apps/Y2Z.Monolith) (Windows) #### Via [Winget](https://winstall.app/apps/Y2Z.Monolith) (Windows)
```console ```console
winget install --id=Y2Z.Monolith -e winget install --id=Y2Z.Monolith -e
``` ```
#### Via [MacPorts](https://ports.macports.org/port/monolith/summary) (macOS) #### Via [MacPorts](https://ports.macports.org/port/monolith/summary) (macOS)

View File

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
DOCKER=docker DOCKER=docker
PROG_NAME=monolith
if which podman 2>&1 > /dev/null; then if which podman 2>&1 > /dev/null; then
DOCKER=podman DOCKER=podman
fi fi
ORG_NAME=y2z
PROG_NAME=monolith
$DOCKER run --rm y2z/$PROG_NAME "$@" $DOCKER run --rm $ORG_NAME/$PROG_NAME "$@"