Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitre committed May 11, 2024
1 parent f899f27 commit 570a44e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 2 deletions.
Empty file modified scripts/ci/msys2/install.sh
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions scripts/dev/download_libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ if [ "$PLATFORM" == "linux" ] && [ "$ARCH" == "64" ]; then
fi
fi

# if [ "$PLATFORM" == "osx" ]; then
if [ "$PLATFORM" == "msys2" ]; then
PKGS="openFrameworksLibs_${VER}_${PLATFORM}_${ARCH}.zip"
elif [ "$ARCH" == "" ] && [ "$PLATFORM" == "vs" ]; then
Expand Down Expand Up @@ -249,6 +250,8 @@ if [ $OVERWRITE -eq 1 ]; then
done
fi

echo "PKGS $PKGS"

for PKG in $PKGS; do
echo "Uncompressing libraries ${PLATFORM}${ARCH} from $PKG"
if [ "$PLATFORM" == "msys2" ] || [ "$PLATFORM" == "vs" ]; then
Expand Down
6 changes: 4 additions & 2 deletions scripts/dev/downloader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ downloader() {
# else
if command -v wget2 2>/dev/null; then
wget2 $@;
elif command -v curl 2>/dev/null; then
elif
command -v curl 2>/dev/null; then
for PKG in $@; do
curl -LO --retry 20 -O --progress-bar $PKG;
echo "curl -LO --progress-bar $PKG"
curl -L --retry 20 --progress-bar -O $PKG
done
else
for PKG in $@; do
Expand Down
Empty file modified scripts/msys2/buildAllExamples.sh
100644 → 100755
Empty file.
Empty file modified scripts/msys2/cleanAllExamples.sh
100644 → 100755
Empty file.
Empty file modified scripts/msys2/compileOF.sh
100644 → 100755
Empty file.
Empty file modified scripts/msys2/install_dependencies.sh
100644 → 100755
Empty file.

0 comments on commit 570a44e

Please sign in to comment.