Skip to content

Commit

Permalink
🪟 Release 2.2.2 for Windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
yodamad authored Jun 18, 2021
2 parents 66fadf1 + b0c9e93 commit 601467f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>fr.yodamad.svn2git</groupId>
<artifactId>svn-2-git</artifactId>
<version>2.2.1</version>
<version>2.2.2</version>
<packaging>jar</packaging>
<name>Svn 2 GitLab</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ fun String.encode(): String = encode(this, "UTF-8")
fun String.decode(): String = decode(this, "UTF-8")
fun String.gitFormat(): String = this.decode().replace(" ", "_")

fun String.escape(): String = this.replace("\\", "\\\\").replace("$", """\$""")
fun String.escape(): String = if (isWindows) this else this.replace("\\", "\\\\").replace("$", """\$""")
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{{{ workingDir }}}\\git-svn-clone.ps1 -repoUrl {{{ svnUrl }}} -username {{{ svnUser }}} -password {{{ svnPassword }}} -debugging -outputStdout -destination "{{{ workingDir }}}" -certificateAcceptResponse t -cloneOptions \"{{{ cloneOptions }}}\"
{{{ workingDir }}}\\git-svn-clone.ps1 -repoUrl {{{ svnUrl }}} -username {{{ svnUser }}} -password {{{ svnPassword }}} -debugging -outputStdout -destination "{{{ workingDir }}}" -certificateAcceptResponse t -cloneOptions "{{{ cloneOptions }}}"

0 comments on commit 601467f

Please sign in to comment.