Skip to content

Commit

Permalink
feat: update file download list in OpenWRT deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Bakera committed Jan 17, 2025
1 parent fad0a50 commit 62d3928
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deployment/deploy_openwrt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ opkg install python3-light python3-pyserial nano
# using download instead of git clone to save space

echo "Download files from GitHub"
FILES="fffserial.py binclock.py displayprovider.py net.py configuration_sample.py displayserver_service.py deployment/openwrt_service.sh demos.py"
FILES="fffserial.py binclock.py displayprovider.py net.py \
configuration_sample.py displayserver_service.py demos.py \
deployment/openwrt_service.sh"
BASE_URL="https://raw.githubusercontent.com/tbs1-bo/flipflapflop/refs/heads/master/"
mkdir -p flipflapflop/deployment
for f in $FILES; do wget $BASE_URL/$f -O flipflapflop/$f; done
Expand Down

0 comments on commit 62d3928

Please sign in to comment.