mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
7 lines
206 B
Bash
7 lines
206 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$IMAGINARY_SECRET" ]; then
|
|
imaginary -return-size -max-allowed-resolution 222.2 "$@"
|
|
else
|
|
imaginary -return-size -max-allowed-resolution 222.2 -key "$IMAGINARY_SECRET" "$@"
|
|
fi
|