mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
16 lines
290 B
Bash
Executable File
16 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# move them to the repository
|
|
for folder in *; do
|
|
if [ -d $folder ] && [ ${folder:0:1} != "#" ]; then
|
|
mv $folder/*.deb /assets/packages
|
|
fi
|
|
done
|
|
|
|
# update apt
|
|
/opt/tooloop/scripts/tooloop-update-packages
|
|
|
|
#echo " "
|
|
#echo "Available packages:"
|
|
apt list tooloop*
|