Skip to content

Commit 10584b3

Browse files
committed
Kotlin: improve posix dev wrappers
1 parent a48d71b commit 10584b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

java/kotlin-extractor/dev/kapt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
"$(dirname "$0")/wrapper.py" kapt "$@"
3+
exec -a "$0" "$(dirname "$0")/wrapper.py" kapt "$@"

java/kotlin-extractor/dev/kotlin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
"$(dirname "$0")/wrapper.py" kotlin "$@"
3+
exec -a "$0" "$(dirname "$0")/wrapper.py" kotlin "$@"

java/kotlin-extractor/dev/kotlinc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
"$(dirname "$0")/wrapper.py" kotlinc "$@"
3+
exec -a "$0" "$(dirname "$0")/wrapper.py" kotlinc "$@"

0 commit comments

Comments
 (0)