mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2025-11-01 18:47:54 +00:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -e /wd/private/images ]; then
|
|
cp -R /wd/private/images/* /usr/share/fbrat/www/images/
|
|
fi
|
|
|
|
if [ -e /wd/private/templates ]; then
|
|
cp -R /wd/private/templates/* /usr/lib/python3.11/site-packages/ratapi/templates/
|
|
fi
|
|
|