Skip to content

Commit

Permalink
Fixing bugs and running new pipeline configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Baudin999 committed Dec 24, 2019
1 parent 8efddc1 commit 16faa0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -409,4 +409,6 @@ ASALocalRun/
.localhistory/


NuGetScratch/
NuGetScratch/
VBCSCompiler/
.dotnet/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mono: none
script:
- sudo snap alias dotnet-sdk.dotnet dotnet
- dotnet build --configuration Release
- dotnet test
- dotnet test ./CompilerTests
before_deploy:
- NAME=$(git describe --tag --abbrev=0)
- bash ./release.sh $NAME $ZDragon_GitHub_Token
Expand Down
2 changes: 1 addition & 1 deletion Mapper.JSON/ASTTypeToJSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private void AddReference(string name, JSchema jSchema)
ASTAlias n => MapASTAlias(n),
ASTChoice n => MapASTChoice(n),
ASTData n => MapASTData(n),
_ => throw new NotImplementedException("Not implemented.")
_ => new JSchema()
};

if (result != null)
Expand Down

0 comments on commit 16faa0f

Please sign in to comment.