Skip to content

Commit e872da3

Browse files
committed
fix Kotlin#19: Espace '\' in kernel.json for compatibility with Windows
1 parent 1476fc9 commit e872da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131

3232
version = '0.6.0'
3333

34-
ext.installPath = project.hasProperty('installPath') ? project.getProperty('installPath') : "${System.properties['user.home']}/.ipython/kernels/kotlin"
34+
ext.installPath = project.hasProperty('installPath') ? project.getProperty('installPath') : "${System.properties['user.home'].replace('\\','\\\\')}/.ipython/kernels/kotlin"
3535
}
3636

3737
apply plugin: 'com.github.johnrengelman.shadow'

0 commit comments

Comments
 (0)