Fix npkpy use (also needs bash) (#1260)

This commit is contained in:
Tim Wilkinson 2024-08-06 09:49:22 -07:00 committed by GitHub
parent ed621c19c3
commit a22e6eb4e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ index 77a35f3eec0070..b8810bfbab305b 100644
endef endef
+define Build/kernel-pack-npk +define Build/kernel-pack-npk
+ sh -c 'source $(STAGING_DIR_HOST)/share/npkpy-venv/bin/activate; python $(STAGING_DIR_HOST)/share/npkpy-venv/bin/pack_npk_kernel.py --kernel $@ --output $@.npk' + bash -c 'source $(STAGING_DIR_HOST)/share/npkpy-venv/bin/activate; python $(STAGING_DIR_HOST)/share/npkpy-venv/bin/pack_npk_kernel.py --kernel $@ --output $@.npk'
+ mv $@.npk $@ + mv $@.npk $@
+endef +endef
+ +