diff options
author | xengineering <me@xengineering.eu> | 2025-07-26 18:59:33 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-07-26 19:02:33 +0200 |
commit | ce9b6c2d205b7d2559a49a36a8d7422ccd12a177 (patch) | |
tree | fc4d42161dc5e22561cf957f1124e43419c23756 /meson.build | |
parent | 0f8c729e691b450cc994e28d68eab8d3250d8457 (diff) | |
download | iot-contact-ce9b6c2d205b7d2559a49a36a8d7422ccd12a177.tar iot-contact-ce9b6c2d205b7d2559a49a36a8d7422ccd12a177.tar.zst iot-contact-ce9b6c2d205b7d2559a49a36a8d7422ccd12a177.zip |
tools: Re-introduce deploy.py script
After the transition to tar archive based deployment it can now be
re-introduced with small changes.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index a6fd4a0..7549940 100644 --- a/meson.build +++ b/meson.build @@ -7,6 +7,8 @@ tar = find_program('tar', required : true) fs = import('fs') +project_version_string = meson.project_name() + '-v' + meson.project_version() + html = fs.copyfile(meson.current_source_dir() / 'web' / 'index.html') css = fs.copyfile(meson.current_source_dir() / 'simple.css' / 'simple.css') @@ -25,8 +27,6 @@ artifacts = [ kicad_pcb, ] -project_version_string = meson.project_name() + '-v' + meson.project_version() - custom_target( output: project_version_string + '.tar.zst', command: [ |