Skip to content

Commit 43c5e76

Browse files
committed
Typos 🤦‍♂️
1 parent 4343fc3 commit 43c5e76

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: fs
22
Title: Cross-Platform File System Operations Based on 'libuv'
3-
Version: 2.0.0
3+
Version: 2.0.0.9000
44
Authors@R: c(
55
person("Jim", "Hester", role = "aut"),
66
person("Hadley", "Wickham", role = "aut"),

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [ "$PKGCONFIG_CFLAGS" ] || [ "$PKGCONFIG_LIBS" ]; then
2222
echo "Found pkg-config cflags and libs!"
2323
PKG_CFLAGS=${PKGCONFIG_CFLAGS}
2424
PKG_LIBS=${PKGCONFIG_LIBS}
25-
elif [ "$UNAME" = "Darwin" ]; then
25+
elif [ "$(uname)" = "Darwin" ]; then
2626
USE_BUNDLED_LIBUV=true
2727
fi
2828

@@ -33,7 +33,7 @@ elif test -f "/etc/os-release" && grep -Fq Ubuntu "/etc/os-release"; then
3333
USE_BUNDLED_LIBUV=true
3434
fi
3535

36-
if [ "USE_BUNDLED_LIBUV" ]; then
36+
if [ "$USE_BUNDLED_LIBUV" ]; then
3737
echo "Building static libuv" 1>&2
3838
cp -f src/Makevars.vendor src/Makevars
3939
exit 0

version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.0

0 commit comments

Comments
 (0)