Files
Brooke Kuhlmann 098f40d967 Refactored the orignal setup script as the build script
Necessary to organize this within the `bin` folder.
2026-02-23 11:01:52 -07:00

20 lines
277 B
Python
Executable File

#! /usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
IFS=$'\n\t'
pushd .
cd ~
mkdir Projects
cd Projects
git clone https://github.com/bitbank2/bb_scd41
cd bb_scd41/Linux
make
sudo apt install -y i2c-tools libi2c-dev
sudo raspi-config nonint do_i2c 0
popd
make