Compare commits

...
7 Commits
Author SHA1 Message Date
BlubbFish 0c4e2d17cc add DataMatrix GPSDLib ImageSharp StreamDeckSharp TelegramBot and updated mqtt, litjson and coordinates 2026-08-03 23:09:16 +02:00
BlubbFish 0287850d13 update libs 2021-04-10 19:01:29 +02:00
BlubbFish f9f9ff5129 added Coordinates 2021-03-24 20:37:30 +01:00
BlubbFish daaeca5bf2 „update.sh“ ändern 2020-09-16 16:24:25 +02:00
BlubbFish c6d02a0a71 Update update.sh 2020-06-15 16:52:11 +02:00
BlubbFish edae4170e3 Add RaspberryIO_26 2019-12-04 20:01:44 +01:00
BlubbFish 40b5328739 Update dependencies 2019-05-30 15:04:59 +02:00
13 changed files with 65 additions and 17 deletions
+21
View File
@@ -10,3 +10,24 @@
[submodule "Mono.Posix"] [submodule "Mono.Posix"]
path = Mono.Posix path = Mono.Posix
url = http://git.blubbfish.net/vs_librarys/Mono.Posix.git url = http://git.blubbfish.net/vs_librarys/Mono.Posix.git
[submodule "RaspberryIO_26"]
path = RaspberryIO_26
url = http://git.blubbfish.net/vs_librarys/RaspberryIO_26.git
[submodule "Coordinates"]
path = Coordinates
url = https://git.blubbfish.net/vs_librarys/Coordinates.git
[submodule "DataMatrix.net"]
path = DataMatrix.net
url = https://git.blubbfish.net/vs_librarys/DataMatrix.net.git
[submodule "GPSDLib"]
path = GPSDLib
url = https://git.blubbfish.net/vs_librarys/GPSDLib.git
[submodule "ImageSharp"]
path = ImageSharp
url = https://git.blubbfish.net/vs_librarys/ImageSharp.git
[submodule "StreamDeckSharp"]
path = StreamDeckSharp
url = https://git.blubbfish.net/vs_librarys/StreamDeckSharp.git
[submodule "TelegramBot"]
path = TelegramBot
url = https://git.blubbfish.net/vs_librarys/TelegramBot.git
Submodule
+1
Submodule Coordinates added at 86f0509c9a
+1
Submodule DataMatrix.net added at ed37b7ba01
Submodule
+1
Submodule GPSDLib added at 0ff9e48e2e
Submodule
+1
Submodule ImageSharp added at 7e8cddf208
+1
Submodule RaspberryIO_26 added at 97ca122560
+1
Submodule StreamDeckSharp added at 308ba282fb
Submodule
+1
Submodule TelegramBot added at 17393a47d3
+1 -1
Submodule litjson updated: 853958acda...63561dc90d
+1 -1
Submodule mqtt updated: 10a7317bc0...0a913efc4a
+33 -13
View File
@@ -1,19 +1,39 @@
#!/bin/bash
function look_for_update() { function look_for_update() {
if [[ $1 == ./.* ]] || [[ $1 == "." ]]; then if [[ $1 == ./.git ]] || [[ $1 == "." ]]; then
return echo "Ignore $1"
fi return
printf -v quotedFile '%q' "$1" fi
if [[ -f $quotedFile/update.sh ]]; then WithoutPrefix=$(echo -n $1 | cut -c 2-)
echo "Switch to subdir $1 and run update.sh" if grep -qx "$WithoutPrefix" .gitignore; then
cd "$1" echo "Ignore $1, because it's in .gitignore"
bash -c ./update.sh return
else fi
echo "Pull $quotedFile" printf -v FolderNameEscaped '%q' "$1"
cd "$1" if [[ -f $1/update.sh ]]; then
git pull echo "Switch to subdir $1 and run update.sh"
cd "$1"
git pull
bash -c "./update.sh nobreak"
else
if [[ -f $1/.git ]]
then
echo "Pull $1"
cd "$1"
git pull
else
echo "Checkout master for $1"
git submodule update --init -- "$1"
cd "$1"
git checkout master
fi
fi fi
} }
export -f look_for_update export -f look_for_update
find . -maxdepth 1 -type d -exec bash -c 'look_for_update "$0"' {} \; find . -maxdepth 1 -type d -exec bash -c 'look_for_update "$0"' {} \;
read -p "Press return"
if [ -z $1 ]; then
read -p "Press return"
fi