summaryrefslogtreecommitdiff
path: root/src/luarocks/fs/netbsd.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/luarocks/fs/netbsd.lua')
-rw-r--r--src/luarocks/fs/netbsd.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/luarocks/fs/netbsd.lua b/src/luarocks/fs/netbsd.lua
deleted file mode 100644
index b9610339..00000000
--- a/src/luarocks/fs/netbsd.lua
+++ /dev/null
@@ -1,14 +0,0 @@
1--- NetBSD implementation of filesystem and platform abstractions.
2local netbsd = {}
3
4local fs = require("luarocks.fs")
5
6function netbsd.init()
7 local uz=io.open("/usr/bin/unzip", "r")
8 if uz ~= nil then
9 io.close(uz)
10 fs.set_tool_available("unzip", true)
11 end
12end
13
14return netbsd