Skip to content

Commit

Permalink
rename resources
Browse files Browse the repository at this point in the history
  • Loading branch information
enricosada committed Jan 7, 2016
1 parent 2eab3ba commit 762a0a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/fsharp/CompileOptions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ let ParseCompilerOptions (collectOtherArgument : string -> unit, blocks: Compile
let path = rsp.TrimStart('@') |> FileSystem.GetFullPathShim

if not (FileSystem.SafeExists path) then
errorR(Error(FSComp.SR.responseFileNotFound(rsp, path),rangeCmdArgs))
errorR(Error(FSComp.SR.optsResponseFileNotFound(rsp, path),rangeCmdArgs))
[]
else
match ResponseFile.parseFile path with
| Choice2Of2 _ ->
errorR(Error(FSComp.SR.invalidResponseFile(rsp, path),rangeCmdArgs))
errorR(Error(FSComp.SR.optsInvalidResponseFile(rsp, path),rangeCmdArgs))
[]
| Choice1Of2 rspData ->
let onlyOptions l =
Expand Down
4 changes: 2 additions & 2 deletions src/fsharp/FSComp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1346,5 +1346,5 @@ estApplyStaticArgumentsForMethodNotImplemented,"A type provider implemented GetS
3188,checkNotSufficientlyGenericBecauseOfScopeAnon,"Type inference caused an inference type variable to escape its scope. Consider adding type annotations to make your code less generic."
3189,checkRaiseFamilyFunctionArgumentCount,"Redundant arguments are being ignored in function '%s'. Expected %d but got %d arguments."
3190,checkLowercaseLiteralBindingInPattern,"Lowercase literal '%s' is being shadowed by a new pattern with the same name. Only uppercase and module-prefixed literals can be used as named patterns."
3191,invalidResponseFile,"Invalid response file '%s' ( '%s' )"
3192,responseFileNotFound,"Response file '%s' not found in '%s'"
3191,optsInvalidResponseFile,"Invalid response file '%s' ( '%s' )"
3192,optsResponseFileNotFound,"Response file '%s' not found in '%s'"

0 comments on commit 762a0a0

Please sign in to comment.