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 a3e8360
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 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
1 change: 0 additions & 1 deletion src/ibek/runtime_cmds/autosave.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
the autosave request files.
"""

import os
import re
from dataclasses import dataclass
from pathlib import Path
Expand Down

0 comments on commit a3e8360

Please sign in to comment.