Skip to content

Commit

Permalink
clean up and format code
Browse files Browse the repository at this point in the history
  • Loading branch information
snshn committed Sep 25, 2024
1 parent b6b358b commit 95645fc
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 15 deletions.
1 change: 0 additions & 1 deletion .adr-dir

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/build_gnu_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ on:
paths-ignore:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ on:
paths-ignore:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ on:
paths-ignore:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ on:
paths-ignore:
- 'assets/'
- 'dist/'
- 'docs/'
- 'snap/'
- '.adr-dir'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
Expand All @@ -19,7 +17,6 @@ on:

jobs:
build_and_test:

strategy:
matrix:
os:
Expand All @@ -31,7 +28,6 @@ jobs:
- beta
- nightly
runs-on: ${{ matrix.os }}

steps:
- run: git config --global core.autocrlf false

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions dist/run-in-container.sh
Original file line number Diff line number Diff line change
@@ -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 "$@"

0 comments on commit 95645fc

Please sign in to comment.