Skip to content

Commit d123d41

Browse files
authored
fix: fix gen-creds.sh (#206)
Signed-off-by: John Pitman <[email protected]>
1 parent 53551d4 commit d123d41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hack/demo-env/gen-creds.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fi
3939
touch "${creds_path}/users.control-plane"
4040

4141
for ag in agent-managed agent-autonomous; do
42-
password=$(pwmake 56)
43-
htpasswd -b -B "${creds_path}/users.control-plane" "${ag}" "${password}"
42+
password=$($pwmake 56)
43+
$htpasswd -b -B "${creds_path}/users.control-plane" "${ag}" "${password}"
4444
echo "${ag}:${password}" > "${creds_path}/creds.${ag}"
45-
done
45+
done

0 commit comments

Comments
 (0)