We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd4a62 commit e29b766Copy full SHA for e29b766
arch/INFLATE.LUA
@@ -1,3 +1,5 @@
1
+if not LIB then print("Please run unzip instead") os.exit(1) end
2
+
3
---Inflate (a.k.a decompress) a deflated file inside a zip
4
---@param r function The reader function
5
---@param w function The writer function
arch/UNZIP.LUA
@@ -1,6 +1,7 @@
#!/usr/bin/env lua
package.path = package.path .. ";?.LUA" --In case of a case sensitive operating system
+LIB=1
6
---Halt and catch fire if E is set
7
function D() if E then error(E, 0) end end
0 commit comments