uci-docker-build/example/src/packages/install-os-info.sh

12 lines
310 B
Bash

#!/bin/bash
echo env
_url=https://raw.githubusercontent.com/KittyKatt/screenFetch/master/screenfetch-dev
wget --quiet -O $BIN_DIR/os-info $_url > /dev/null
if [[ -f $BIN_DIR/os-info ]]; then
chmod +x $BIN_DIR/os-info
else
echo Failed to download
echo $_url
echo info screen not available
fi