mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
node_modules was being overwritten by the bind-mount when the container started. This is kind of hacky, but it’s the only way to do this without changing everything.
8 lines
128 B
Bash
8 lines
128 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p /ansible-tower/awx/ui/
|
|
mv -n /tmp/ansible-tower/awx/ui/node_modules /ansible-tower/awx/ui
|
|
|
|
exec $@
|