Skip to content

Commit d23a2cf

Browse files
committed
Adds support for Unicode characters in database filenames.
- Adds environment variables for locale settings in Dockerfiles. - Update database filename test for Unicode compatibility. - Fix `realpath` call for paths with spaces. - Adds test for databases with spaces in the path. - Improves error message in tests if `FULL_IMAGE_NAME` env var is not set. - Minor fix for `ExitCodeIs`.
1 parent 64155b8 commit d23a2cf

File tree

108 files changed

+255
-58
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+255
-58
lines changed

generated/3.0.10/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.10/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.10/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.10/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.10/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.10/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.11/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.11/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.11/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.11/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.11/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.11/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.12/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.12/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.12/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.12/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.12/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.12/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.8/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.8/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.8/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.8/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.8/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.8/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.9/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.9/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.9/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.9/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/3.0.9/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/3.0.9/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.0/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/4.0.0/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.0/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/4.0.0/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.0/jammy/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM ubuntu:jammy
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/4.0.0/jammy/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.0/noble/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
FROM ubuntu:noble
66

7+
ENV LANG=C.UTF-8
8+
ENV LC_ALL=C.UTF-8
9+
710
ARG ARCH_ARM64
811

912
# ARM64 arch

generated/4.0.0/noble/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.1/bookworm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bookworm-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/4.0.1/bookworm/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

generated/4.0.1/bullseye/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
FROM debian:bullseye-slim
99

10+
ENV LANG=C.UTF-8
11+
ENV LC_ALL=C.UTF-8
12+
1013
ARG ARCH_ARM64
1114

1215
# ARM64 arch

generated/4.0.1/bullseye/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ create_db() {
214214
if [ -n "$FIREBIRD_DATABASE" ]; then
215215
# Expand FIREBIRD_DATABASE to full path
216216
cd "$FIREBIRD_DATA"
217-
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing $FIREBIRD_DATABASE)
217+
export FIREBIRD_DATABASE=$(realpath --canonicalize-missing "$FIREBIRD_DATABASE")
218218

219219
# Store it for other sessions of this instance
220220
echo "export FIREBIRD_DATABASE='$FIREBIRD_DATABASE'" > ~/.bashrc

0 commit comments

Comments
 (0)