Skip to content

Commit a5fd2fe

Browse files
authored
fix: remove invalid shell syntax (#1518)
1 parent a8bfc41 commit a5fd2fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
44
def project do
55
[
66
app: :realtime,
7-
version: "2.46.0",
7+
version: "2.46.1",
88
elixir: "~> 1.17.3",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,

run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ generate_certs() {
6060
jq -r '.key' cert_secrets | base64 -d > ca.key
6161
jq -r '.cert' cert_secrets | base64 -d > ca.cert
6262
openssl req -new -nodes -out server.csr -keyout server.key -subj "/C=US/ST=Delaware/L=New Castle/O=Supabase Inc/CN=$(hostname -f)"
63-
openssl x509 -req -in server.csr -days 90 -CA ca.cert -CAkey ca.key -out server.crt
63+
openssl x509 -req -in server.csr -days 90 -CA ca.cert -CAkey ca.key -out server.cert
6464
rm -f ca.key
6565
CWD=`pwd`
6666
export GEN_RPC_CACERTFILE="$CWD/ca.cert"
@@ -91,7 +91,7 @@ if [ "${ENABLE_ERL_CRASH_DUMP:-false}" = true ]; then
9191
fi
9292

9393
if [[ -n "${GENERATE_CLUSTER_CERTS}" ]] ; then
94-
generate_certs()
94+
generate_certs
9595
fi
9696

9797
echo "Running migrations"

0 commit comments

Comments
 (0)