Skip to content

Commit ffbaca5

Browse files
Update justfile
1 parent 3e9506f commit ffbaca5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ docker-compose := if `command -v docker-compose; echo $?` == "0" {
3737
default:
3838
just --list
3939

40-
# [deps] Update dependencies
40+
# [deps] update dependencies
4141
update-deps:
4242
#!/usr/bin/env bash
4343
# set -euxo pipefail
4444
find . -maxdepth 3 -name "pyproject.toml" -exec \
4545
echo "[{}]" \; -exec \
4646
poetry update --no-ansi --lock \;
4747

48-
# [deps] Export requirements.txt
48+
# [deps] export requirements.txt
4949
export-reqs: update-deps
5050
#!/usr/bin/env bash
5151
# set -euxo pipefail
@@ -94,7 +94,7 @@ build: checkbash
9494
docker build -f Dockerfile --progress=plain -t {{APP}} .
9595
fi
9696

97-
# [docker] intel build
97+
# [docker] intel build
9898
buildx: checkbash
9999
docker buildx build -f Dockerfile --progress=plain -t ${TAG} --build-arg CHIPSET_ARCH=x86_64-linux-gnu --load .
100100

0 commit comments

Comments
 (0)