Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 0ae9e6a

Browse files
committed
Don't normalize go build target
This breaks the common target `./...` which behaves differently from `...`
1 parent 3147194 commit 0ae9e6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async function main () {
1515
}
1616
const goModDir = path.dirname(goModPath)
1717

18-
let goBuildTarget = path.normalize(core.getInput('go-build-target'))
18+
let goBuildTarget = core.getInput('go-build-target')
1919

2020
if (goBuildTarget !== 'all' && goBuildTarget !== '...') {
2121
if (!fs.existsSync(goBuildTarget)) {

0 commit comments

Comments
 (0)