mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-01 19:37:54 +00:00
22 lines
437 B
Bash
Executable File
22 lines
437 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copy wlan-lanforge-scripts into place
|
|
# Assumes wlan-lanforge-scripts is already up to date.
|
|
# Other setup may be added here as well.
|
|
|
|
if [ -d ../wlan-lanforge-scripts ]
|
|
then
|
|
rm -fr lanforge/lanforge-scripts
|
|
|
|
cp -ar ../wlan-lanforge-scripts lanforge/lanforge-scripts
|
|
fi
|
|
if [ -d tests/logs ]
|
|
then
|
|
rm -fr tests/logs
|
|
mkdir tests/logs
|
|
fi
|
|
if [ -d tests/reports ]
|
|
then
|
|
rm -fr tests/reports
|
|
mkdir tests/reports
|
|
fi |