Skip to content

Commit

Permalink
fix: docker login breaks when docker is chalk binary (#209)
Browse files Browse the repository at this point in the history
* build: recompiling chalk in nimble c changes

* build: bumping con4m which includes runProcess stdin fix

* docs: updating changlog to include stdin proxy fix
  • Loading branch information
miki725 authored Feb 19, 2024
1 parent cb4f3bf commit 72a92cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
- Fixing docker build attempting to use `--build-context`
on older docker versions which did not support that flag.
[#207](https://github.com/crashappsec/chalk/pull/207)
- Fixes `echo foo | chalk docker login --password-stdin`
as `stdin` was not being closed in the pipe to docker
process.
[#209](https://github.com/crashappsec/chalk/pull/209)

## 0.3.2

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ SOURCES+=$(shell find src/ -name '*.md')
SOURCES+=$(shell find ../con4m -name '*.nim' 2> /dev/null)
SOURCES+=$(shell find ../con4m -name '*.c4m' 2> /dev/null)
SOURCES+=$(shell find ../nimutils -name '*.nim' 2> /dev/null)
SOURCES+=$(shell find ../nimutils -name '*.c' 2> /dev/null)
SOURCES+=src/docs/CHANGELOG.md

VERSION=$(shell cat src/configs/base_keyspecs.c4m \
Expand Down
2 changes: 1 addition & 1 deletion chalk.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bin = @["chalk"]

# Dependencies
requires "nim >= 2.0.0"
requires "https://github.com/crashappsec/con4m#ee3df100a930ba4f642ae314640123e742d8f529"
requires "https://github.com/crashappsec/con4m#884d82268f891432c7a1fbcbcc25443d3d3b30b0"
requires "https://github.com/viega/zippy == 0.10.7" # MIT

# this allows us to get version externally
Expand Down

0 comments on commit 72a92cc

Please sign in to comment.