Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/android/publish.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ do
git tag "${OS}_${TARGET}_${TAG_COMMIT}"
git push --tags
else
echo "$TARGET not found!"
echo "$TARGET not found, either $TARGET_PATH/$MONERO_BIN or $TARGET_PATH/$WOWNERO_BIN!"
fi
fi
done
4 changes: 2 additions & 2 deletions scripts/linux/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ else
ARCH_PATH=$TARGET

if [ -f "$TARGET_PATH/$MONERO_BIN" -a -f "$TARGET_PATH/$WOWNERO_BIN" ]; then
git checkout "${OS}_${TARGET}_${TAG_COMMIT}" || git checkout -b "${OS}_${TARGET}_${TAG_COMMIT}"
git checkout $OS/$TARGET || git checkout -b $OS/$TARGET
if [ ! -d "$OS/$ARCH_PATH" ]; then
mkdir -p "$OS/$ARCH_PATH"
fi
cp -rf "$TARGET_PATH/$MONERO_BIN" "$OS/$ARCH_PATH/$MONERO_BIN"
cp -rf "$TARGET_PATH/$WOWNERO_BIN" "$OS/$ARCH_PATH/$WOWNERO_BIN"
git add .
git push origin $OS/$TARGET
git commit -m "$TAG_COMMIT"
git push origin $OS/$TARGET
git tag "${OS}_${TARGET}_${TAG_COMMIT}"
git push --tags
Expand Down