mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-11-04 20:28:17 +00:00
13 lines
301 B
Bash
Executable File
13 lines
301 B
Bash
Executable File
#!/bin/bash
|
|
############################################################
|
|
#
|
|
# Every time a merge is performed we should invalidate
|
|
# the module data.
|
|
#
|
|
############################################################
|
|
echo "Removing module data after merge..."
|
|
rm -rf "$GIT_DIR/../make/modules/modules*"
|
|
|
|
|
|
|