Skip to content

Commit f8c7aed

Browse files
[#545] censor might not need base64
# New features and improvements censor args are not base64 encoded/decoded # Breaking changes None. # Migration None. # Bug fixes None. # How this feature was tested CI pipeline. # Related issue Closes #545
1 parent 714636d commit f8c7aed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

censor.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ then
77
fi
88
echo "base-commit: ${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}"
99
echo "target-commit ${CI_COMMIT_SHA}"
10-
ARGS=$(echo "${CENSOR_ARGS}" | base64 -d)
11-
echo $ARGS
12-
censor ${ARGS} \
10+
11+
censor ${CENSOR_ARGS} \
1312
--repo-path '.' \
1413
--base-commit origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME} \
1514
--target-commit ${CI_COMMIT_SHA} \

0 commit comments

Comments
 (0)