mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
* Change reference to moved local_settings.py file * Do not appy local_settings to test runner
13 lines
114 B
Bash
Executable File
13 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
set +x
|
|
|
|
cd /awx_devel
|
|
make clean
|
|
make awx-link
|
|
|
|
if [[ ! $@ ]]; then
|
|
make test
|
|
else
|
|
make $@
|
|
fi
|