mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-10-30 18:38:06 +00:00
13 lines
293 B
Bash
Executable File
13 lines
293 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
|