We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6228d19 commit 9bdf523Copy full SHA for 9bdf523
.yamllint
Dockerfile
@@ -1,10 +1,9 @@
1
FROM hexletbasics/base-image:latest
2
3
RUN apt-get update && apt-get install -yqq mono-devel \
4
- && apt-get clean \
5
&& rm -rf /var/lib/apt/lists/*
6
7
-ARG SCRIPCS_VERSION=0.17.1
+ENV SCRIPCS_VERSION=0.17.1
8
9
RUN wget -q https://github.com/scriptcs/scriptcs/archive/refs/tags/v${SCRIPCS_VERSION}.tar.gz \
10
&& tar -xzf v${SCRIPCS_VERSION}.tar.gz \
Makefile
@@ -16,7 +16,7 @@ code-lint:
16
# ~/bin/jb inspectcode Program.csproj
17
18
clean:
19
- @$$(find . -type f -name *.cs -delete)
+ @find . -type f -name "*.cs" -delete
20
21
compose-bash:
22
docker-compose run --rm exercises bash
0 commit comments