We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b014be commit 1f52203Copy full SHA for 1f52203
1 file changed
.github/workflows/javadoc.yml
@@ -66,15 +66,15 @@ jobs:
66
# TAG="${GITHUB_REF_NAME}"
67
TAG="9.0.0-rc"
68
VERSION_DIR="docs/${TAG}"
69
- echo $VERSION_DIR
+ echo "$VERSION_DIR"
70
rm -rf "gh-pages/${VERSION_DIR}"
71
mkdir -p "gh-pages/${VERSION_DIR}"
72
SRC_DIR="target/reports/apidocs/"
73
echo $SRC_DIR
74
- if [ -d $SRC_DIR ]; then
75
- echo $SRC_DIR exists."
+ if [ -d "$SRC_DIR" ]; then
+ echo "$SRC_DIR exists."
76
else
77
- echo $SRC_DIR does not exist."
+ echo "$SRC_DIR does not exist."
78
fi
79
cp -r target/reports/apidocs/ "gh-pages/${VERSION_DIR}/"
80
0 commit comments