forked from btclock/btclock_v3
Making the build cross-platform compatible (help from Djuri)
This commit is contained in:
parent
008b2bda60
commit
fa61d2c529
1 changed files with 2 additions and 1 deletions
|
@ -29,9 +29,10 @@ def process_directory(input_dir, output_dir):
|
|||
|
||||
# Build web interface before building FS
|
||||
def before_buildfs(source, target, env):
|
||||
env.Execute("cd data && yarn && yarn postinstall && PUBLIC_BASE_URL=\"\" yarn build")
|
||||
env.Execute("cd data && yarn && yarn postinstall && yarn build")
|
||||
input_directory = 'data/dist'
|
||||
output_directory = 'data/build_gz'
|
||||
process_directory(input_directory, output_directory)
|
||||
|
||||
os.environ["PUBLIC_BASE_URL"] = ""
|
||||
env.AddPreAction("$BUILD_DIR/littlefs.bin", before_buildfs)
|
||||
|
|
Loading…
Reference in a new issue