Skip to content

Commit

Permalink
Combine os.unix.R and os.windows.R in one os.R
Browse files Browse the repository at this point in the history
  • Loading branch information
Arni Magnusson committed Jan 7, 2019
1 parent 26125c2 commit b4a9d2f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: icesTAF
Version: 2.1-0
Date: 2019-01-04
Date: 2019-01-07
Title: Functions to Support the ICES Transparent Assessment Framework
Authors@R: c(person("Arni", "Magnusson", role=c("aut","cre"), email="[email protected]"),
person("Colin", "Millar", role="aut"))
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--------------------------------------------------------------------------------
icesTAF 2.1-0 (2019-01-04)
icesTAF 2.1-0 (2019-01-07)
--------------------------------------------------------------------------------
o Added function taf.bootstrap() to set up data files and software.

Expand Down
9 changes: 9 additions & 0 deletions R/os.unix.R → R/os.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,12 @@ os.unix <- function()
{
.Platform$OS.type == "unix"
}

#' @rdname os.unix
#'
#' @export

os.windows <- function()
{
.Platform$OS.type == "windows"
}
8 changes: 0 additions & 8 deletions R/os.windows.R

This file was deleted.

2 changes: 1 addition & 1 deletion man/os.unix.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b4a9d2f

Please sign in to comment.