10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
set +x
|
|
|
|
cd /awx_devel
|
|
make clean
|
|
make awx-link
|
|
|
|
cp tools/docker-compose/ansible/roles/sources/files/local_settings.py awx/settings/local_settings.py
|
|
make "${1:-test}"
|