From 5e87c92213a270f329b298591a1c3c25175a90a6 Mon Sep 17 00:00:00 2001 From: Marc Baloup Date: Sun, 9 Apr 2023 18:11:22 +0200 Subject: [PATCH] Fix characters with warnings --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index d91186a..f79f773 100644 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ echo "Getting Geyser last build infos..." # get paper build version if ! curl -L -s $URL_BUILD -o build_infos.json; then - echo -e "Error: Can’t join API" + echo -e "Error: Can't join API" exit 1 fi @@ -36,6 +36,6 @@ echo "Building docker image of Geyser Standalone "$DOCKER_TAG docker build --build-arg RUNNABLE_JAR=$RUNNABLE_JAR -t $DOCKER_TAG . docker tag $DOCKER_TAG $DOCKER_TAG_LATEST -echo "Pushing image to Pandacube’s container registry" +echo "Pushing image to Pandacube's container registry" docker push $DOCKER_TAG docker push $DOCKER_TAG_LATEST