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:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'

View File

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

View File

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

View File

@ -8,9 +8,7 @@ on:
paths-ignore:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
@ -19,7 +17,6 @@ on:
jobs:
build_and_test:
strategy:
matrix:
os:
@ -31,7 +28,6 @@ jobs:
- beta
- nightly
runs-on: ${{ matrix.os }}
steps:
- 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)
```console
winget install --id=Y2Z.Monolith -e
winget install --id=Y2Z.Monolith -e
```
#### Via [MacPorts](https://ports.macports.org/port/monolith/summary) (macOS)

View File

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