Skip to content

Commit

Permalink
Fix build script reference (dotnet#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman authored Aug 20, 2019
1 parent 1874718 commit 28d0a84
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/bin
**/obj
**/out
**/.vscode
**/.vs
.dotnet
.Microsoft.DotNet.ImageBuilder
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Build output
[Bb]in/
[Oo]bj/
[Oo]ut/

# cache for misc downloads
artifacts/

# dotnet install directory
.dotnet/

# Visual Studio 2015 cache/options directory
.vs/

# Visual Studio Code cache/options directory
.vscode/

# Visual Studio debug profile
**/launchSettings.json

# Test files
*.trx

# User-specific files
*.suo
*.user

# ImageBuilder directory
.Microsoft.DotNet.ImageBuilder
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
pushd $PSScriptRoot
try {
./scripts/Invoke-ImageBuilder.ps1 "build --path '$DockerfilePath' $ImageBuilderCustomArgs"
./eng/common/Invoke-ImageBuilder.ps1 "build --path '$DockerfilePath' $ImageBuilderCustomArgs"
}
finally {
popd
Expand Down

0 comments on commit 28d0a84

Please sign in to comment.