clean up and format code
This commit is contained in:
parent
b6b358b3bc
commit
95645fcff4
|
|
@ -6,9 +6,7 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'assets/'
|
- 'assets/'
|
||||||
- 'dist/'
|
- 'dist/'
|
||||||
- 'docs/'
|
|
||||||
- 'snap/'
|
- 'snap/'
|
||||||
- '.adr-dir'
|
|
||||||
- 'Dockerfile'
|
- 'Dockerfile'
|
||||||
- 'LICENSE'
|
- 'LICENSE'
|
||||||
- 'Makefile'
|
- 'Makefile'
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,7 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'assets/'
|
- 'assets/'
|
||||||
- 'dist/'
|
- 'dist/'
|
||||||
- 'docs/'
|
|
||||||
- 'snap/'
|
- 'snap/'
|
||||||
- '.adr-dir'
|
|
||||||
- 'Dockerfile'
|
- 'Dockerfile'
|
||||||
- 'LICENSE'
|
- 'LICENSE'
|
||||||
- 'Makefile'
|
- 'Makefile'
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,7 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'assets/'
|
- 'assets/'
|
||||||
- 'dist/'
|
- 'dist/'
|
||||||
- 'docs/'
|
|
||||||
- 'snap/'
|
- 'snap/'
|
||||||
- '.adr-dir'
|
|
||||||
- 'Dockerfile'
|
- 'Dockerfile'
|
||||||
- 'LICENSE'
|
- 'LICENSE'
|
||||||
- 'Makefile'
|
- 'Makefile'
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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 "$@"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue