Skip to content

Commit

Permalink
add Db folders to runtime for req files
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Dec 13, 2024
1 parent a60e9ac commit f6c0dad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ibek/ioc_cmds/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def extract_assets(

if GLOBALS.STATIC_BUILD:
# static builds only need database and .proto files from support modules
asset_matches = "db|*/protocol"
asset_matches = "db|*/protocol|*/Db"
else:
# dynamically linked builds need binaries and protocol files
asset_matches = "bin|db|lib|*/protocol"
# dynamically linked builds need binaries, protocol files and Db folders
asset_matches = "bin|db|lib|*/protocol|*/Db"

# chdir out of the folders we will move
os.chdir(source)
Expand Down

0 comments on commit f6c0dad

Please # to comment.