Skip to content

Commit

Permalink
sync versions, fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
bash committed Apr 30, 2016
1 parent 7164399 commit 4b30b73
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ brew install --HEAD coop
coop is avaible as a powershell module:

```powershell
Invoke-WebRequest -OutFile CoopInstaller.ps1 -Uri https://raw.githubusercontent.com/STJEREM/coop/development/client/powershell/Installer.ps1; .\CoopInstaller.ps1 "0.0.2"
Invoke-WebRequest -OutFile CoopInstaller.ps1 -Uri https://raw.githubusercontent.com/STJEREM/coop/development/client/powershell/Installer.ps1; .\CoopInstaller.ps1 "0.0.3"
```

## API
Expand Down
Binary file modified client/powershell/Coop/Coop.psd1
Binary file not shown.
2 changes: 1 addition & 1 deletion client/powershell/Installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if ((Test-Path "$($installDir)\Coop") -eq $true) {
}

Write-Host "Installing files..."
Copy-Item -Recurse "$($tmp)\coop-$($version)\powershell\Coop" $installDir
Copy-Item -Recurse "$($tmp)\coop-$($version)\client\powershell\Coop" $installDir

Write-Host "Cleaning up..."
Remove-Item -Force $out
Expand Down
2 changes: 1 addition & 1 deletion client/python/coop
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def print_menu(menu):


def print_version():
print('STJEREM/coop 0.0.2')
print('STJEREM/coop 0.0.3')


if len(sys.argv) == 2 and sys.argv[1] == '--version':
Expand Down

0 comments on commit 4b30b73

Please sign in to comment.