generated from general-packages/pika-pkg-template
Update fetch.sh
This commit is contained in:
parent
120aa70061
commit
9374209035
8
fetch.sh
8
fetch.sh
@ -28,11 +28,10 @@ for bin_pkg in $BIN_PACKAGE_NAME_LIST
|
|||||||
do
|
do
|
||||||
BIN_VERSION=$(apt show $bin_pkg:$PIKA_BIN_ARCH 2>&1 | grep Version: | head -n1 | cut -f2- -d":" | cut -f2- -d":" | tr -d ' ')
|
BIN_VERSION=$(apt show $bin_pkg:$PIKA_BIN_ARCH 2>&1 | grep Version: | head -n1 | cut -f2- -d":" | cut -f2- -d":" | tr -d ' ')
|
||||||
TARGET_VERSION=$(echo $BIN_VERSION | sed 's/\+b.*//')
|
TARGET_VERSION=$(echo $BIN_VERSION | sed 's/\+b.*//')
|
||||||
apt download -y $bin_pkg:$PIKA_BIN_ARCH || echo "Maybe Error: $bin_pkg doesn't exist in $PIKA_BIN_ARCH" && continue
|
if apt download -y $bin_pkg:$PIKA_BIN_ARCH
|
||||||
ls
|
then
|
||||||
if [[ $BIN_VERSION == $TARGET_VERSION ]]
|
if [[ $BIN_VERSION == $TARGET_VERSION ]]
|
||||||
then
|
then
|
||||||
echo "dbg0"
|
|
||||||
cp -vf ./*.deb ./output/
|
cp -vf ./*.deb ./output/
|
||||||
else
|
else
|
||||||
for i in ./*.deb
|
for i in ./*.deb
|
||||||
@ -44,4 +43,7 @@ do
|
|||||||
cp -vf ./*-fixed.deb ./output/
|
cp -vf ./*-fixed.deb ./output/
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Maybe Error: $bin_pkg doesn't exist in $PIKA_BIN_ARCH"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user