mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
fix: Don't point to 1.12.9 (unsure where it went)
This commit is contained in:
parent
16ca0accbb
commit
9576a03cee
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
ARG VERSION=1.12.9
|
ARG VERSION=1.12.8
|
||||||
ENV VERSION=${VERSION}
|
ENV VERSION=${VERSION}
|
||||||
RUN apt-get update && apt-get install -y wget git jq
|
RUN apt-get update && apt-get install -y wget git jq
|
||||||
RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \
|
RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \
|
||||||
|
|
|
@ -6,7 +6,7 @@ config at this repository:
|
||||||
```yaml
|
```yaml
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/crate-ci/typos
|
- repo: https://github.com/crate-ci/typos
|
||||||
rev: v1.12.9
|
rev: v1.12.8
|
||||||
hooks:
|
hooks:
|
||||||
- id: typos
|
- id: typos
|
||||||
```
|
```
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ from typing import Tuple
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from setuptools.command.install import install as orig_install
|
from setuptools.command.install import install as orig_install
|
||||||
|
|
||||||
TYPOS_VERSION = '1.12.9'
|
TYPOS_VERSION = '1.12.8'
|
||||||
POSTFIX_SHA256 = {
|
POSTFIX_SHA256 = {
|
||||||
'linux': (
|
'linux': (
|
||||||
'x86_64-unknown-linux-musl.tar.gz',
|
'x86_64-unknown-linux-musl.tar.gz',
|
||||||
|
|
Loading…
Reference in a new issue