Skip to content

Commit 433070c

Browse files
committed
Fix redundant newlines in github tokens
1 parent b8e57f8 commit 433070c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.teamcity/settings.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ project {
5454
displayName = "anvilpowered/anvil"
5555
repositoryURL = "https://github.com/anvilpowered/anvil"
5656
authType = accessToken {
57-
accessToken = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e\n"
57+
accessToken = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e"
5858
}
5959
param("tokenId", "")
6060
}
@@ -87,7 +87,7 @@ fun BuildFeatures.configureBaseFeatures() {
8787
publisher = github {
8888
githubUrl = "https://api.github.com"
8989
authType = personalToken {
90-
token = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e\n"
90+
token = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e"
9191
}
9292
}
9393
}
@@ -98,7 +98,7 @@ fun BuildFeatures.configurePullRequests() {
9898
vcsRootExtId = "${DslContext.settingsRoot.id}"
9999
provider = github {
100100
authType = token {
101-
token = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e\n"
101+
token = "credentialsJSON:7a0f679e-94e2-4f3e-b19a-db375294d40e"
102102
}
103103
filterAuthorRole = PullRequests.GitHubRoleFilter.MEMBER_OR_COLLABORATOR
104104
}

0 commit comments

Comments
 (0)