You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect to be able to say e.g., podman run --rm -it sagemath/sagemath python -c 'print(1)', but unfortunately one must escape the arguments like this: podman run --rm -it sagemath/sagemath python3 -c 'print\(1\)'. (Of course in practice I want to pass a slightly more complicated command ;-)).
This is probably due to the following line using $* instead of $@:
I would expect to be able to say e.g.,
podman run --rm -it sagemath/sagemath python -c 'print(1)'
, but unfortunately one must escape the arguments like this:podman run --rm -it sagemath/sagemath python3 -c 'print\(1\)'
. (Of course in practice I want to pass a slightly more complicated command ;-)).This is probably due to the following line using
$*
instead of$@
:sage/docker/entrypoint.sh
Line 8 in 7726cd9
The text was updated successfully, but these errors were encountered: