diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:19:18 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:19:18 +0000 |
commit | 0537a242f9709271454252e7897a7709144a3b02 (patch) | |
tree | 1ec4bdbe71ac516e2b6f9146ee599e29c25b0fd6 /alpineversion-model.lua | |
parent | 4ce4c54a20b7cf6adb26884e0c7618038dd7bfe5 (diff) | |
download | acf-alpine-baselayout-0537a242f9709271454252e7897a7709144a3b02.tar.bz2 acf-alpine-baselayout-0537a242f9709271454252e7897a7709144a3b02.tar.xz |
Change use of require to work with Lua 5.2
Diffstat (limited to 'alpineversion-model.lua')
-rw-r--r-- | alpineversion-model.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alpineversion-model.lua b/alpineversion-model.lua index ac20bb8..b839785 100644 --- a/alpineversion-model.lua +++ b/alpineversion-model.lua @@ -1,7 +1,7 @@ -- alpineversion model methods module (..., package.seeall) -fs = fs = require("acf.fs") +fs = require("acf.fs") get = function () local liboutput = fs.read_file("/etc/alpine-release") |