Skip to content

Commit

Permalink
Renamed release/ to feed/
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianeicher committed Sep 28, 2018
1 parent ab80e66 commit eac852b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Expand Up @@ -2,8 +2,8 @@
/src/.vs/
/src/_ReSharper*/
/doc/*.tag
/release/*.xml
/release/*.tar.gz
/feed/*.xml
/feed/*.tar.gz
obj/
bin/
*.bak
Expand All @@ -14,4 +14,4 @@ bin/
*.userprefs
*.resources
*.filtered.resx
launchSettings.json
launchSettings.json
6 changes: 3 additions & 3 deletions appveyor.yml
Expand Up @@ -13,14 +13,14 @@ for:
build_script:
- ps: src\build.ps1 $env:GitVersion_NuGetVersion
- ps: doc\build.ps1
- ps: release\build.ps1 $env:GitVersion_NuGetVersion
- ps: feed\build.ps1 $env:GitVersion_NuGetVersion

test_script:
- ps: src\test.ps1

artifacts:
- path: release\*.xml
- path: release\*.tar.gz
- path: feed\*.xml
- path: feed\*.tar.gz
- path: artifacts\Release\*.nupkg
- path: artifacts\Documentation
name: apidocs
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Expand Up @@ -5,6 +5,6 @@ pushd $(Split-Path -Path $MyInvocation.MyCommand.Definition -Parent)
src\build.ps1 $Version
src\test.ps1
doc\build.ps1
release\build.ps1 $Version
feed\build.ps1 $Version

popd
File renamed without changes.
4 changes: 3 additions & 1 deletion release/build.ps1 → feed/build.ps1
Expand Up @@ -3,7 +3,9 @@ $ErrorActionPreference = "Stop"
pushd $(Split-Path -Path $MyInvocation.MyCommand.Definition -Parent)

# Ensure 0install is in the PATH
if (!(Get-Command 0install -ErrorAction SilentlyContinue)) { $env:PATH = "$(Resolve-Path ..\artifacts\Release\net45);$env:PATH" }
if (!(Get-Command 0install -ErrorAction SilentlyContinue)) {
$env:PATH = "$(Resolve-Path ..\artifacts\Release\net45);$env:PATH"
}

# Build feed and archive
$stability = if($Version.Contains('-')) {'developer'} else {'stable'}
Expand Down

0 comments on commit eac852b

Please sign in to comment.