Skip to content

Commit

Permalink
fix(process-compose): run reproducible netcat
Browse files Browse the repository at this point in the history
  • Loading branch information
tgunnoe committed Sep 23, 2024
1 parent 6372cef commit a19da17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/processes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
exec = {
command = ''
while true; do
if [ -S ${node-socket} ] && nc -U -z -w 1 ${node-socket}; then
if [ -S ${node-socket} ] && ${pkgs.netcat}/bin/nc -U -z -w 1 ${node-socket}; then
exit 0
fi
sleep 5
Expand Down

0 comments on commit a19da17

Please sign in to comment.