Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
RussKie committed Aug 21, 2019
1 parent a477e05 commit 6fe0126
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
1 change: 0 additions & 1 deletion Build/Mark-RepoClean.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ $submodules | ForEach-Object {
& git update-index --skip-worktree GitExtSshAskPass/SshAskPass.rc2
& git update-index --skip-worktree GitExtensionsShellEx/GitExtensionsShellEx.rc
& git update-index --skip-worktree GitExtensionsVSIX/source.extension.vsixmanifest
& git update-index --skip-worktree Setup/MakeInstallers.cmd

cd GitExtensionsDoc
& git update-index --skip-worktree source/conf.py
Expand Down
1 change: 0 additions & 1 deletion Build/Prepare-Artifacts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ try {
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
Copy-Item -Path .\bin\$Configuration\GitExtensions.msi -Destination $PSScriptRoot/../GitExtensions-$Version.msi -Force

#& .\MakeInstallers.cmd $Configuration $BuildType
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }

if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
Expand Down
19 changes: 1 addition & 18 deletions Setup/set_version_to.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,24 +119,7 @@
for i in range(1, len(verSplitted)):
if len(verSplitted[i]) == 1:
verSplitted[i] = "0" + verSplitted[i]

filename = "MakeInstallers.cmd"
makeInstallers = open(filename, "r").readlines()
o = ""
for i in makeInstallers:
line = i
if line.find("set numericVersion=") == 0:
data = line.split('=')
data[1] = '.'.join(verSplitted) + '\n'
line = '='.join(data)
elif line.find("set version=") == 0:
data = line.split('=')
data[1] = args.text + '\n'
line= '='.join(data)
o += line
outfile = open(filename, "w")
outfile.writelines(o)


filename = "..\GitExtensionsDoc\source\conf.py"
docoConf = open(filename, "r").readlines()
o = ""
Expand Down

0 comments on commit 6fe0126

Please sign in to comment.