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
In my dev container I need to run the clj command in an interactive bash, so I try
steps:
- uses: actions/checkout@v4
- name: Run make ci-build in dev containeruses: devcontainers/[email protected]with:
push: neverrunCmd: bash -i -c "clj -X:test"
but it does no work. I don't get an error, but it drops into an interactive clj shell, which comes when calling clj without any params.
Same with single quotes:
steps:
- uses: actions/checkout@v4
- name: Run make ci-build in dev containeruses: devcontainers/[email protected]with:
push: neverrunCmd: bash -i -c 'clj -X:test'
The text was updated successfully, but these errors were encountered:
behrica
changed the title
bash .i as runCmd not working
bash -i as runCmd not working
May 13, 2024
In my dev container I need to run the
clj
command in an interactive bash, so I trybut it does no work. I don't get an error, but it drops into an interactive
clj
shell, which comes when callingclj
without any params.Same with single quotes:
The text was updated successfully, but these errors were encountered: