mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-05-15 02:35:49 +00:00
8 lines
205 B
Python
8 lines
205 B
Python
![]() |
Import("env")
|
||
|
|
||
|
# Build web interface before building FS
|
||
|
def before_buildfs(source, target, env):
|
||
|
env.Execute("cd data && yarn && yarn build")
|
||
|
|
||
|
env.AddPreAction("$BUILD_DIR/spiffs.bin", before_buildfs)
|