Some checks failed
Build Simple CLI / build (push) Failing after 1s
- Add community release and integration documentation - Add production deployment and testing framework guides - Add live-build configuration with hooks and package lists - Add VM management and testing scripts - Update .gitignore to block build artifacts and large files - Remove old bootc package file - Add comprehensive project completion summary
9 lines
256 B
Bash
Executable file
9 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
echo "Installing Particle-OS tools..."
|
|
cd /tmp
|
|
cp ../tools/*.deb .
|
|
ls -la *.deb
|
|
dpkg -i *.deb || apt-get install -f -y
|
|
rm -f *.deb
|
|
echo "Particle-OS tools installed successfully!"
|
|
which apt-ostree bootupctl bootc || echo "Some tools not found"
|