Skip to content

Commit ba0615a

Browse files
committed
s/realpath/readlink -f
1 parent 110233d commit ba0615a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/deploy-local-repo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project_root="$( cd -P "$( dirname "$source" )/.." && pwd )"
2020
cd "${project_root}"
2121

2222
set -ex
23-
repo=$(realpath "$1")
23+
repo=$(readlink -f "$1")
2424
shift
2525
./mvnw "$@" -DskipJavainterfacegen -DskipTests -DdeployAtEnd=true \
2626
-DaltDeploymentRepository=local::default::file:${repo} \

scripts/maven-bundle-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ echo "Downloading: $asset_url"
3131
curl -L -o maven-resource-bundle.zip "$asset_url"
3232
unzip -q -o maven-resource-bundle.zip -d "$1"
3333
rm maven-resource-bundle.zip
34-
"${project_root}/scripts/maven-bundle-create-settings.sh" "$(realpath "$1")"
34+
"${project_root}/scripts/maven-bundle-create-settings.sh" "$(readlink -f "$1")"

0 commit comments

Comments
 (0)